##// END OF EJS Templates
fastannotate: adapt to buffer() going a way in Python 3...
Augie Fackler -
r41300:dfc73c80 default
parent child Browse files
Show More
@@ -101,7 +101,7 b' def _parseresponse(payload):'
101 101 ch = payload[i:i + 1]
102 102 if ch == '\0':
103 103 if state == 1:
104 result[vfspath] = buffer(payload, i + 1, int(size))
104 result[vfspath] = payload[i + 1:i + 1 + int(size)]
105 105 i += int(size)
106 106 state = 0
107 107 vfspath = size = ''
General Comments 0
You need to be logged in to leave comments. Login now