Fix error in export function

This commit is contained in:
luxick
2017-03-10 20:32:23 +01:00
parent b88622239b
commit 46fcb7a7a3

View File

@@ -41,7 +41,7 @@ def export_library():
pickle.dump(library, open(dialog.get_filename(), 'wb')) pickle.dump(library, open(dialog.get_filename(), 'wb'))
except: except:
show_message("Error", "Error while saving library to disk") show_message("Error", "Error while saving library to disk")
push_status("Library exported to \"", dialog.get_filename() + "\"") push_status("Library exported to \"" + dialog.get_filename() + "\"")
print("Library exported to \"", dialog.get_filename() + "\"") print("Library exported to \"", dialog.get_filename() + "\"")
dialog.destroy() dialog.destroy()