From: ThomasV Date: Fri, 12 Oct 2012 18:42:45 +0000 (+0200) Subject: fix: call read_wallet_config only if there is a wallet_path value in options X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=9f36ef39313001ab96e84527990d453c8004da30;p=electrum-nvc.git fix: call read_wallet_config only if there is a wallet_path value in options --- diff --git a/lib/simple_config.py b/lib/simple_config.py index bc00da7..f382969 100644 --- a/lib/simple_config.py +++ b/lib/simple_config.py @@ -31,8 +31,13 @@ class SimpleConfig: def __init__(self, options=None): self.wallet_config = {} - if options and options.wallet_path: - self.read_wallet_config(options.wallet_path) + if options: + # this will call read_wallet_config only if there is a wallet_path value in options + try: + self.read_wallet_config(options.wallet_path) + except: + pass + # system conf, readonly self.system_config = {}