##// END OF EJS Templates
changegroup: fix typo introduced in 9f2c407caf34
Jim Hague -
r13459:acbe171c stable
parent child Browse files
Show More
@@ -151,7 +151,7 b' class unbundle10(object):'
151 return self._stream.close()
151 return self._stream.close()
152
152
153 def chunklength(self):
153 def chunklength(self):
154 d = readexactly(stream, 4)
154 d = readexactly(self._stream, 4)
155 l = struct.unpack(">l", d)[0]
155 l = struct.unpack(">l", d)[0]
156 if l <= 4:
156 if l <= 4:
157 if l:
157 if l:
General Comments 0
You need to be logged in to leave comments. Login now