summaryrefslogtreecommitdiff
path: root/dedup/hashing.py
diff options
context:
space:
mode:
Diffstat (limited to 'dedup/hashing.py')
-rw-r--r--dedup/hashing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dedup/hashing.py b/dedup/hashing.py
index 70f6268..a8a46c7 100644
--- a/dedup/hashing.py
+++ b/dedup/hashing.py
@@ -115,7 +115,7 @@ class DecompressedHash(object):
class SuppressingHash(object):
"""A hash that silences exceptions from the update and hexdigest methods of
- a hashlib-like object. If an exception has occured, hexdigest always
+ a hashlib-like object. If an exception has occurred, hexdigest always
returns None."""
def __init__(self, hashobj, exceptions=()):
"""