SomberNight 7 years ago
parent
commit
358722b9cc
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 5
      lib/util.py

5
lib/util.py

@ -330,7 +330,10 @@ def android_data_dir():
def android_headers_dir():
d = android_ext_dir() + '/org.electrum.electrum'
if not os.path.exists(d):
os.mkdir(d)
try:
os.mkdir(d)
except FileExistsError:
pass # in case of race
return d
def android_check_data_dir():

Loading…
Cancel
Save