summaryrefslogtreecommitdiff
path: root/obnamlib/structurederror.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-08-29 11:31:52 +0300
committerLars Wirzenius <liw@liw.fi>2015-08-29 11:35:46 +0300
commit9b287d2a44a36c32957bb862b9ad11e93384251d (patch)
tree4f8596e23f72877ba06b210e4814548087405e08 /obnamlib/structurederror.py
parent924486aa804f486d1b4a54c01287b275602a46a4 (diff)
downloadobnam-9b287d2a44a36c32957bb862b9ad11e93384251d.tar.gz
Call Exception.__init__ in StructuredError
Diffstat (limited to 'obnamlib/structurederror.py')
-rw-r--r--obnamlib/structurederror.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/obnamlib/structurederror.py b/obnamlib/structurederror.py
index 581a762e..01bbbcae 100644
--- a/obnamlib/structurederror.py
+++ b/obnamlib/structurederror.py
@@ -78,6 +78,7 @@ class StructuredError(Exception):
'''
def __init__(self, **kwargs):
+ Exception.__init__(self)
self.kwargs = kwargs
@property