Skip to content

Commit

Permalink
Fix LegacyIMATLogFile for CSV files
Browse files Browse the repository at this point in the history
  • Loading branch information
samtygier-stfc committed Oct 13, 2023
1 parent 25018a2 commit 9d3cd36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mantidimaging/core/io/instrument_log_implmentations.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def _has_imat_data_line(cls, line: str):
except ValueError:
return False

if not ("Projection:" in line or "Radiography:" in line):
if not ("Projection" in line or "Radiography" in line):
return False

return True

0 comments on commit 9d3cd36

Please sign in to comment.