From 205f9d814de22ab8a8de2709f06ddb5942a97419 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zoe=20Faltib=C3=A0?= Date: Tue, 14 Jan 2020 17:27:51 +0100 Subject: [PATCH] pyln-client/LightningRpc: fixed logger in super() * Changelog-None --- contrib/pyln-client/pyln/client/lightning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/pyln-client/pyln/client/lightning.py b/contrib/pyln-client/pyln/client/lightning.py index a943c9905..230f8be64 100644 --- a/contrib/pyln-client/pyln/client/lightning.py +++ b/contrib/pyln-client/pyln/client/lightning.py @@ -357,7 +357,7 @@ class LightningRpc(UnixDomainSocketRpc): return obj def __init__(self, socket_path, executor=None, logger=logging): - super().__init__(socket_path, executor, logging, self.LightningJSONEncoder, self.LightningJSONDecoder()) + super().__init__(socket_path, executor, logger, self.LightningJSONEncoder, self.LightningJSONDecoder()) def autocleaninvoice(self, cycle_seconds=None, expired_by=None): """