fix path for android

This commit is contained in:
ThomasV 2012-12-01 17:56:31 +01:00
parent 52781aa489
commit 36ef16cfb2
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ if __name__ == '__main__':
# config is an object passed to the various constructors (wallet, interface, gui)
if 'ANDROID_DATA' in os.environ:
config_options = {'wallet_path':"/sdcard/electrum.dat", 'blockchain_headers_path':'/sdcard/sl4a/e4a-%s'%ELECTRUM_VERSION, 'gui':'android'}
config_options = {'wallet_path':"/sdcard/electrum.dat", 'blockchain_headers_path':'/sdcard/sl4a/scripts/e4a-%s'%ELECTRUM_VERSION, 'gui':'android'}
else:
config_options = eval(str(options))
for k, v in config_options.items():