From 1afb64420385e218c6905a7095757e90c468feba Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Wed, 23 Dec 2015 13:42:35 +0900 Subject: [PATCH] Fix call to get_wallet_folder --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 99db9d9e..6771fe23 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -320,7 +320,7 @@ class ElectrumWindow(QMainWindow, PrintError): self.wallet.synchronize() def open_wallet(self): - wallet_folder = self.gui_object.get_wallet_folder() + wallet_folder = self.get_wallet_folder() filename = unicode(QFileDialog.getOpenFileName(self, "Select your wallet file", wallet_folder)) if not filename: return