Skip to content

Commit

Permalink
fixed problem with latest upgrade to logsearch
Browse files Browse the repository at this point in the history
wrong indentation
  • Loading branch information
trmrsh committed Aug 24, 2021
1 parent 991f362 commit 39a0deb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hipercam/scripts/logsearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,9 @@ def logsearch(args=None):
# close connection
conn.close()

if output is not None:
total = pd.concat(results)
total.to_csv(output)
if output is not None:
total = pd.concat(results)
total.to_csv(output)

def regexp(expr, item):
reg = re.compile(expr,re.IGNORECASE)
Expand Down

0 comments on commit 39a0deb

Please sign in to comment.