pyln-client/LightningRpc: fixed logger in super()

* Changelog-None
This commit is contained in:
Zoe Faltibà 2020-01-14 17:27:51 +01:00 committed by ZmnSCPxj, ZmnSCPxj jxPCSmnZ
parent 4be1868b8a
commit 205f9d814d
1 changed files with 1 additions and 1 deletions

View File

@ -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):
"""