From 94d34c37c9900b1b95bcc7642e148ed0e47c90fa Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 10 Nov 2011 09:51:08 +0100 Subject: [PATCH] better use its own dir; some users might think they can safely delete their Bitcoin dir --- client/electrum.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/electrum.py b/client/electrum.py index e607507c9..3d0484e56 100755 --- a/client/electrum.py +++ b/client/electrum.py @@ -217,11 +217,11 @@ class InvalidPassword(Exception): if "HOME" in os.environ: - wallet_dir = os.environ["HOME"] + '/.bitcoin/' + wallet_dir = os.environ["HOME"] + '/.electrum/' elif "LOCALAPPDATA" in os.environ: - wallet_dir = os.environ["LOCALAPPDATA"] + '/Bitcoin/' + wallet_dir = os.environ["LOCALAPPDATA"] + '/Electrum/' elif "APPDATA" in os.environ: - wallet_dir = os.environ["APPDATA"] + '/Bitcoin/' + wallet_dir = os.environ["APPDATA"] + '/Electrum/' else: print "No home directory found in environment variables." raise