electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 1be0ea1494c505fcffd58c88230769ba9c4d4167
parent b4cef1b98111bea53c37c8f7f435c18cb786fc81
Author: ThomasV <thomasv@gitorious>
Date:   Thu,  3 Oct 2013 14:00:57 +0200

remove check_windows_wallet_migration

Diffstat:
Melectrum | 4----
Mlib/util.py | 13-------------
2 files changed, 0 insertions(+), 17 deletions(-)

diff --git a/electrum b/electrum @@ -130,10 +130,6 @@ if __name__ == '__main__': for k, v in config_options.items(): if v is None: config_options.pop(k) - # Wallet migration on Electrum 1.7 - # Todo: In time we could remove this again - if platform.system() == "Windows": - util.check_windows_wallet_migration() config = SimpleConfig(config_options) diff --git a/lib/util.py b/lib/util.py @@ -37,19 +37,6 @@ def print_json(obj): s = repr(obj) sys.stdout.write(s + "\n") sys.stdout.flush() - - -def check_windows_wallet_migration(): - if platform.release() != "XP": - if os.path.exists(os.path.join(os.environ["LOCALAPPDATA"], "Electrum")): - if os.path.exists(os.path.join(os.environ["APPDATA"], "Electrum")): - print_msg("Two Electrum folders have been found, the default Electrum location for Windows has changed from %s to %s since Electrum 1.7, please check your wallets and fix the problem manually." % (os.environ["LOCALAPPDATA"], os.environ["APPDATA"])) - sys.exit() - try: - shutil.move(os.path.join(os.environ["LOCALAPPDATA"], "Electrum"), os.path.join(os.environ["APPDATA"])) - print_msg("Your wallet has been moved from %s to %s."% (os.environ["LOCALAPPDATA"], os.environ["APPDATA"])) - except: - print_msg("Failed to move your wallet.") def user_dir():