tfollow up e20dfcd3eb76664360a03b18da78c710e094ffb7 - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit d5f6651237f628c72f7ce47b1f4e02bed7f0c015
DIR parent d287152942752b27d9c4c47eb2920919b7c6a7d5
HTML Author: ThomasV <thomasv@gitorious>
Date: Mon, 25 May 2015 08:47:25 +0200
follow up e20dfcd3eb76664360a03b18da78c710e094ffb7
Diffstat:
M gui/qt/__init__.py | 2 +-
M lib/simple_config.py | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
---
DIR diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py
t@@ -177,7 +177,7 @@ class ElectrumGui:
last_wallet = self.config.get('gui_last_wallet')
if last_wallet is not None and self.config.get('wallet_path') is None:
if os.path.exists(last_wallet):
- self.config.read_only_options['default_wallet_path'] = last_wallet
+ self.config.cmdline_options['default_wallet_path'] = last_wallet
try:
storage = WalletStorage(self.config.get_wallet_path())
except BaseException as e:
DIR diff --git a/lib/simple_config.py b/lib/simple_config.py
t@@ -4,7 +4,7 @@ import threading
import os
from copy import deepcopy
-from util import user_dir, print_error, print_msg
+from util import user_dir, print_error, print_msg, print_stderr
SYSTEM_CONFIG_PATH = "/etc/electrum.conf"
t@@ -83,7 +83,7 @@ class SimpleConfig(object):
def set_key(self, key, value, save = True):
if not self.is_modifiable(key):
- print_error("Warning: not changing config key '%s' set on the command line" % key)
+ print_stderr("Warning: not changing config key '%s' set on the command line" % key)
return
with self.lock: