##// END OF EJS Templates
py3: fix the way we produce bytes list in store.py...
Pulkit Goyal -
r30893:a0e3d808 default
parent child Browse files
Show More
@@ -101,7 +101,7 b' def _buildencodefun():'
101 e = '_'
101 e = '_'
102 if pycompat.ispy3:
102 if pycompat.ispy3:
103 xchr = lambda x: bytes([x])
103 xchr = lambda x: bytes([x])
104 asciistr = bytes(xrange(127))
104 asciistr = [bytes(a) for a in range(127)]
105 else:
105 else:
106 xchr = chr
106 xchr = chr
107 asciistr = map(chr, xrange(127))
107 asciistr = map(chr, xrange(127))
General Comments 0
You need to be logged in to leave comments. Login now