mirror of
https://git.wownero.com/lza_menace/wownero-python.git
synced 2024-08-15 03:25:25 +00:00
Fix for python 2.x compatibility issue.
This commit is contained in:
parent
ee8aea69bd
commit
339363b575
1 changed files with 1 additions and 1 deletions
|
@ -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={}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue