##// END OF EJS Templates
py3: converts bytes to pycompat.bytestr to get bytechrs while enumerating...
Pulkit Goyal -
r36209:80301c90 default
parent child Browse files
Show More
@@ -53,6 +53,7 b' def b85decode(text):'
53 out = []
53 out = []
54 for i in range(0, len(text), 5):
54 for i in range(0, len(text), 5):
55 chunk = text[i:i + 5]
55 chunk = text[i:i + 5]
56 chunk = pycompat.bytestr(chunk)
56 acc = 0
57 acc = 0
57 for j, c in enumerate(chunk):
58 for j, c in enumerate(chunk):
58 try:
59 try:
General Comments 0
You need to be logged in to leave comments. Login now