Skip to content

Commit

Permalink
Merge pull request #994 from mantidproject/993_omit_spectrum_id
Browse files Browse the repository at this point in the history
Omit spectrum ID when saving as ASCII
  • Loading branch information
SilkeSchomann authored Jul 11, 2024
2 parents ff28241 + 982f637 commit 8974039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mslice/models/workspacemanager/file_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def save_ascii(workspace, path):
if isinstance(workspace, HistogramWorkspace):
_save_cut_to_ascii(workspace, path)
else:
SaveAscii(InputWorkspace=workspace, Filename=path)
SaveAscii(InputWorkspace=workspace, Filename=path, WriteSpectrumID=False)


def save_matlab(workspace, path):
Expand Down

0 comments on commit 8974039

Please sign in to comment.