##// END OF EJS Templates
pvec: fix overlooked chr() call...
Augie Fackler -
r43764:271af23d default
parent child Browse files
Show More
@@ -76,7 +76,7 b' def _bin(bs):'
76 def _str(v, l):
76 def _str(v, l):
77 bs = b""
77 bs = b""
78 for p in pycompat.xrange(l):
78 for p in pycompat.xrange(l):
79 bs = chr(v & 255) + bs
79 bs = pycompat.bytechr(v & 255) + bs
80 v >>= 8
80 v >>= 8
81 return bs
81 return bs
82
82
General Comments 0
You need to be logged in to leave comments. Login now