We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ec056d commit 36a0f25Copy full SHA for 36a0f25
1 file changed
pysyncobj/syncobj.py
@@ -64,7 +64,7 @@ class _COMMAND_TYPE:
64
65
class SyncObjException(Exception):
66
def __init__(self, errorCode, *args, **kwargs):
67
- Exception.__init__(self, *args, **kwargs)
+ Exception.__init__(self, errorCode, *args, **kwargs)
68
self.errorCode = errorCode
69
70
class SyncObjExceptionWrongVer(SyncObjException):
0 commit comments