From 339363b575c2cc4ec9f764f13f011c6e9657eb34 Mon Sep 17 00:00:00 2001 From: "Alexey V. Litvinov" Date: Thu, 18 Oct 2018 14:47:01 +1000 Subject: [PATCH] Fix for python 2.x compatibility issue. --- monero/transaction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monero/transaction.py b/monero/transaction.py index 23eb9aa..0d11cd9 100644 --- a/monero/transaction.py +++ b/monero/transaction.py @@ -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={}"