commit 858ab183bbaf7d814514125599df247047d44e98 parent 7cb02f5d2ace5e4e17665c0cf4b2dfcaa0df24b4 Author: ThomasV <thomasv1@gmx.de> Date: Wed, 3 Dec 2014 21:05:39 +0100 Merge pull request #947 from Tafelpoot/walletpath2 pass absolute path for new wallet Diffstat:
M | 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 @@ -286,7 +286,7 @@ class ElectrumWindow(QMainWindow): def new_wallet(self): import installwizard - wallet_folder = os.path.dirname(self.wallet.storage.path) + wallet_folder = os.path.dirname(os.path.abspath(self.wallet.storage.path)) i = 1 while True: filename = "wallet_%d"%i