Browse Source

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

* Changelog-None
travis-debug
Zoe Faltibà 5 years ago
committed by ZmnSCPxj, ZmnSCPxj jxPCSmnZ
parent
commit
205f9d814d
  1. 2
      contrib/pyln-client/pyln/client/lightning.py

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

Loading…
Cancel
Save