URI: 
       tFix call to get_wallet_folder - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 1afb64420385e218c6905a7095757e90c468feba
   DIR parent 21e4a30371c849d5df037aaf746ef886afd37896
  HTML Author: Neil Booth <kyuupichan@gmail.com>
       Date:   Wed, 23 Dec 2015 13:42:35 +0900
       
       Fix call to get_wallet_folder
       
       Diffstat:
         M gui/qt/main_window.py               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
       t@@ -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