1
0

Merge pull request #1246 from kyuupichan/bug_fix

e20dfc unintentionally inverted portable condition
This commit is contained in:
ThomasV
2015-05-25 13:28:42 +02:00
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()