1
0

e20dfc unintentionally inverted portable condition

This wasn't noticed because the test was also broken.
This commit is contained in:
Neil Booth
2015-05-25 16:52:42 +09:00
parent d5f6651237
commit e63ac88c77
2 changed files with 5 additions and 6 deletions

View File

@@ -56,9 +56,9 @@ class SimpleConfig(object):
# Portable wallets don't use a system config
if self.cmdline_options.get('portable', False):
self.system_config = read_system_config_function()
else:
self.system_config = {}
else:
self.system_config = read_system_config_function()
# Set self.path and read the user config
self.user_config = {} # for self.get in electrum_path()