diff options
Diffstat (limited to 'dedup/hashing.py')
-rw-r--r-- | dedup/hashing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dedup/hashing.py b/dedup/hashing.py index a8a46c7..0b7f889 100644 --- a/dedup/hashing.py +++ b/dedup/hashing.py @@ -52,7 +52,7 @@ class HashBlacklistContent(object): # the chain avoids passing the empty sequence to max maxlen = max(itertools.chain((0,), itertools.imap(len, blacklist))) self.maxlen = maxlen - self.stored = "" + self.stored = b"" @property def name(self): |