From 46fcb7a7a38337854019b7b9c5a64c10eac89d1d Mon Sep 17 00:00:00 2001 From: luxick Date: Fri, 10 Mar 2017 20:32:23 +0100 Subject: [PATCH] Fix error in export function --- mtg-collector/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mtg-collector/util.py b/mtg-collector/util.py index ee542a8..1e7bea6 100644 --- a/mtg-collector/util.py +++ b/mtg-collector/util.py @@ -41,7 +41,7 @@ def export_library(): pickle.dump(library, open(dialog.get_filename(), 'wb')) except: 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() + "\"") dialog.destroy()