Skip to content

Commit

Permalink
fix: remove the so2exp prefix when exporting data (close #157)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Mar 22, 2024
1 parent 71d52b7 commit 9155e08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- fix: very small numbers not parsed when showing metadata (#158)
- fix: do not allow question mark "?" in exported file names (#156)
- fix: do not override files when exporting data (#153)
- fix: remove the "so2exp" prefix when exporting data (#157)
2.15.3
- build: PyInstaller to rebuild its bootloader (avoid false positive
malware detection)
Expand Down
2 changes: 1 addition & 1 deletion shapeout2/gui/export/e2data.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def export_data(self):
features=[ff for ff in features if ff in ds.features],
logs=True,
tables=True,
meta_prefix="so2exp_",
meta_prefix="",
override=False)
elif self.file_format == "fcs":
ds.export.fcs(
Expand Down

0 comments on commit 9155e08

Please sign in to comment.