Fix for python 2.x compatibility issue.

This commit is contained in:
Alexey V. Litvinov 2018-10-18 14:47:01 +10:00
parent ee8aea69bd
commit 339363b575

View file

@ -51,7 +51,7 @@ class OutgoingPayment(Payment):
def __init__(self, **kwargs):
self.destinations = kwargs.pop('destinations', self.destinations)
super().__init__(**kwargs)
super(OutgoingPayment, self).__init__(**kwargs)
_reprstr = "out: {} @ {} {:.12f} id={}"