From 0737ee7fd3162441c7327ff329a0ce4323320e41 Mon Sep 17 00:00:00 2001 From: Tafelpoot Date: Mon, 1 Dec 2014 15:14:03 +0100 Subject: [PATCH] pass absolute path for new wallet --- 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 2ab96e96..7ad4021d 100644 --- 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