Browse Source

Fix call to get_wallet_folder

283
Neil Booth 9 years ago
parent
commit
1afb644203
  1. 2
      gui/qt/main_window.py

2
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

Loading…
Cancel
Save