commit e63157c2abdf79800b1485fa74a51f7c48b3842e
parent 06cff9ac10e9c8480184f837d59221a344033ca8
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:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/electrum/plugins/cosigner_pool/qt.py b/electrum/plugins/cosigner_pool/qt.py
@@ -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