tfix 'daemon load_wallet' over RPC for python > 3.5.3 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 0142e0fa223bb2c56dd684e7a0867787fe0e9e2b DIR parent 40ceabff799c98dc7dd7f260d667550b4622ca9a HTML Author: SomberNight <somber.night@protonmail.com> Date: Thu, 6 Sep 2018 15:14:35 +0200 fix 'daemon load_wallet' over RPC for python > 3.5.3 related: #3764 Diffstat: M electrum/simple_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/simple_config.py b/electrum/simple_config.py t@@ -241,7 +241,7 @@ class SimpleConfig(PrintError): # command line -w option if self.get('wallet_path'): - return os.path.join(self.get('cwd'), self.get('wallet_path')) + return os.path.join(self.get('cwd', ''), self.get('wallet_path')) # path in config file path = self.get('default_wallet_path')