This commit is contained in:
SomberNight 2018-07-11 15:25:05 +02:00
parent 40a43afa12
commit 358722b9cc
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9

View File

@ -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():