summaryrefslogtreecommitdiff
path: root/alot/errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/errors.py')
-rw-r--r--alot/errors.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/alot/errors.py b/alot/errors.py
index ce88f38e..435a4bf9 100644
--- a/alot/errors.py
+++ b/alot/errors.py
@@ -19,5 +19,4 @@ class GPGProblem(Exception):
"""GPG Error"""
def __init__(self, message, code):
self.code = code
- self.message = message
- Exception(message)
+ super(GPGProblem, self).__init__(message)