better use its own dir; some users might think they can safely delete their Bitcoin dir
authorThomasV <thomasv@gitorious>
Thu, 10 Nov 2011 08:51:08 +0000 (09:51 +0100)
committerThomasV <thomasv@gitorious>
Thu, 10 Nov 2011 08:51:08 +0000 (09:51 +0100)
client/electrum.py

index e607507..3d0484e 100755 (executable)
@@ -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