From 07bdd6c494004458e3799ef364a71d6fa5f476c8 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 24 Oct 2013 11:43:55 +0200 Subject: [PATCH] move old wallet to subdir --- lib/wallet.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/wallet.py b/lib/wallet.py index 47bed805b..e2d2c18af 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -92,17 +92,19 @@ class WalletStorage: if path: return path - # default path in pre 1.9 versions - old_path = os.path.join(config.path, "electrum.dat") - if os.path.exists(old_path): - return old_path - # default path dirpath = os.path.join(config.path, "wallets") if not os.path.exists(dirpath): os.mkdir(dirpath) - return os.path.join(config.path, "wallets", "default_wallet") + new_path = os.path.join(config.path, "wallets", "default_wallet") + + # default path in pre 1.9 versions + old_path = os.path.join(config.path, "electrum.dat") + if os.path.exists(old_path) and not os.path.exists(new_path): + os.rename(old_path, new_path) + + return new_path def read(self, path):