SomberNight
7 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
4 additions and
1 deletions
-
lib/util.py
|
@ -330,7 +330,10 @@ def android_data_dir(): |
|
|
def android_headers_dir(): |
|
|
def android_headers_dir(): |
|
|
d = android_ext_dir() + '/org.electrum.electrum' |
|
|
d = android_ext_dir() + '/org.electrum.electrum' |
|
|
if not os.path.exists(d): |
|
|
if not os.path.exists(d): |
|
|
os.mkdir(d) |
|
|
try: |
|
|
|
|
|
os.mkdir(d) |
|
|
|
|
|
except FileExistsError: |
|
|
|
|
|
pass # in case of race |
|
|
return d |
|
|
return d |
|
|
|
|
|
|
|
|
def android_check_data_dir(): |
|
|
def android_check_data_dir(): |
|
|