aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/src/errors.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lang/python/src/errors.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/python/src/errors.py b/lang/python/src/errors.py
index 9c7f0378..5a58dea8 100644
--- a/lang/python/src/errors.py
+++ b/lang/python/src/errors.py
@@ -163,13 +163,13 @@ class InvalidRecipients(EncryptionError):
for r in self.recipients)
-class DeryptionError(GpgError):
+class DecryptionError(GpgError):
pass
-class UnsupportedAlgorithm(DeryptionError):
+class UnsupportedAlgorithm(DecryptionError):
def __init__(self, algorithm, **kwargs):
- DeryptionError.__init__(self, **kwargs)
+ DecryptionError.__init__(self, **kwargs)
self.algorithm = algorithm
def __str__(self):