fix android detection

This commit is contained in:
ThomasV 2017-01-04 22:37:59 +01:00
parent ec42483b6b
commit 4db5052cc6
1 changed files with 3 additions and 3 deletions

View File

@ -243,14 +243,14 @@ def get_headers_path(config):
return os.path.join(config.path, 'blockchain_headers')
def user_dir():
if os.name == 'posix':
if 'ANDROID_DATA' in os.environ:
return android_check_data_dir()
elif os.name == 'posix':
return os.path.join(os.environ["HOME"], ".electrum")
elif "APPDATA" in os.environ:
return os.path.join(os.environ["APPDATA"], "Electrum")
elif "LOCALAPPDATA" in os.environ:
return os.path.join(os.environ["LOCALAPPDATA"], "Electrum")
elif 'ANDROID_DATA' in os.environ:
return android_check_data_dir()
else:
#raise Exception("No home directory found in environment variables.")
return