Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dnsviz/dnsviz.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasey Deccio <casey@deccio.net>2021-01-09 03:06:08 +0300
committerCasey Deccio <casey@deccio.net>2021-01-09 03:06:08 +0300
commit2e3cb9b0893e16fc764cb45c0676dcd009d8cfc0 (patch)
tree7f121ad93cbc779727ea70e3f5f5a1f1670fe240
parent78bbcc9cdcfda2f8ffa92dce75cf8fdd5555ba80 (diff)
Categorize errors appropriately
-rw-r--r--dnsviz/analysis/errors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dnsviz/analysis/errors.py b/dnsviz/analysis/errors.py
index 9bc7ac0..c9da104 100644
--- a/dnsviz/analysis/errors.py
+++ b/dnsviz/analysis/errors.py
@@ -494,7 +494,7 @@ class DSDigestAlgorithmMaybeIgnored(DSError):
self.template_kwargs['algorithm_text'] = fmt.DS_DIGEST_TYPES.get(self.template_kwargs['algorithm'], str(self.template_kwargs['algorithm']))
self.template_kwargs['new_algorithm_text'] = fmt.DS_DIGEST_TYPES.get(self.template_kwargs['new_algorithm'], str(self.template_kwargs['algorithm']))
-class DSDigestError(DomainNameAnalysisError):
+class DSDigestError(DSError):
pass
class DigestAlgorithmNotSupported(DSDigestError):