tlogging: fix another call with multiple args - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit e63157c2abdf79800b1485fa74a51f7c48b3842e
DIR parent 06cff9ac10e9c8480184f837d59221a344033ca8
HTML Author: SomberNight <somber.night@protonmail.com>
Date: Tue, 7 May 2019 01:41:41 +0200
logging: fix another call with multiple args
did a search with following regex now: logger\..*\(.*,
Diffstat:
M electrum/plugins/cosigner_pool/qt.… | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/electrum/plugins/cosigner_pool/qt.py b/electrum/plugins/cosigner_pool/qt.py
t@@ -193,7 +193,7 @@ class Plugin(BasePlugin):
WaitingDialog(window, msg, task, on_success, on_failure)
def on_receive(self, keyhash, message):
- self.logger.info("signal arrived for", keyhash)
+ self.logger.info(f"signal arrived for {keyhash}")
for key, _hash, window in self.keys:
if _hash == keyhash:
break