diff options
Diffstat (limited to 'python/lasso.py')
-rw-r--r-- | python/lasso.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/lasso.py b/python/lasso.py index ad210795..6b311a3f 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -50,7 +50,7 @@ class Error(Exception): class ErrorUnknown(Error): def __init__(self, code, functionName): - ErrorUnknown.__init__(functionName) + Error.__init__(self, functionName) self.code = code def __str__(self): |