Skip to content
Snippets Groups Projects
Commit af96f65f authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

Save: Fix unicode issue.

parent 880a51ca
Branches
Tags
1 merge request!10Move to gtk3 and new command protocol
...@@ -653,12 +653,12 @@ class Main(object): ...@@ -653,12 +653,12 @@ class Main(object):
# Autosaving # Autosaving
if self.autosave_checkbox.get_active(): if self.autosave_checkbox.get_active():
save.autoSave(self.current_exp, save.autoSave(self.current_exp,
self.autosavedir_button.get_filename(), self.autosavedir_button.get_filename().decode('utf-8'),
self.autosavename.get_text() self.autosavename.get_text()
) )
save.autoPlot(self.current_exp, save.autoPlot(self.current_exp,
self.autosavedir_button.get_filename(), self.autosavedir_button.get_filename().decode('utf-8'),
self.autosavename.get_text() self.autosavename.get_text()
) )
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment