Commit 84befb00 authored by Ezio Melotti's avatar Ezio Melotti

Fix failure introduced in r83182.

parent cf448832
...@@ -241,7 +241,7 @@ def b32decode(s, casefold=False, map01=None): ...@@ -241,7 +241,7 @@ def b32decode(s, casefold=False, map01=None):
acc += _b32rev[c] << shift acc += _b32rev[c] << shift
shift -= 5 shift -= 5
if shift < 0: if shift < 0:
parts.append(binascii.unhexlify('%010x' % acc)) parts.append(binascii.unhexlify(bytes('%010x' % acc, "ascii")))
acc = 0 acc = 0
shift = 35 shift = 35
# Process the last, partial quanta # Process the last, partial quanta
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment