mirror of
https://git.freebsd.org/ports.git
synced 2025-05-29 01:16:28 -04:00
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.
11 lines
317 B
Python
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
|
|
|