ports/devel/py-parallax/files/patch-parallax_____init____.py
Martin Wilke b061ab554e Parallax SSH is a fork of Parallel SSH which focuses less on command-line
tools and more on providing a flexible and programmable API that can be used by
Python application developers to perform SSH operations across multiple
machines.

WWW: https://github.com/krig/parallax/

PR:		228184
Submitted by:	David Shane Holden <dpejesh@yahoo.com>
Sponsored by:	iXsystems Inc.
2018-05-19 16:32:15 +00:00

11 lines
317 B
Python

--- parallax/__init__.py.orig 2018-04-19 02:38:57 UTC
+++ parallax/__init__.py
@@ -61,7 +61,7 @@ class Error(BaseException):
that host.
"""
def __init__(self, msg, task):
- super().__init__(self)
+ super(BaseException, self).__init__()
self.msg = msg
self.task = task