Skip to content

Commit f3aef3d

Browse files
authored
Fix extract of subtracted files
1 parent 00aa494 commit f3aef3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/freesas/app/extract_ascii.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def extract_all(filename):
159159
target = "1_chromatogram"
160160
elif program == "bm29.integratemultiframe":
161161
target = "1_integration"
162-
elif program == "bm29.subtract":
162+
elif program.startswith("bm29.subtract"):
163163
target = "3_azimuthal_integration"
164164
else:
165165
raise RuntimeError(f"Unable to read file written by {program}")

0 commit comments

Comments
 (0)