Skip to content

Commit

Permalink
Fix history_attrs file to include non-ascii characters
Browse files Browse the repository at this point in the history
  • Loading branch information
arash77 committed Nov 8, 2024
1 parent 5d510ee commit 293e0e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/model/store/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2174,7 +2174,7 @@ def export_history(
history_attrs = history.serialize(app.security, self.serialization_options)
history_attrs_filename = os.path.join(export_directory, ATTRS_FILENAME_HISTORY)
with open(history_attrs_filename, "w") as history_attrs_out:
dump(history_attrs, history_attrs_out)
dump(history_attrs, history_attrs_out, ensure_ascii=False)

sa_session = app.model.session

Expand Down

0 comments on commit 293e0e8

Please sign in to comment.