##// END OF EJS Templates
wireproto: do not abort after successful lookup...
Kyle Lippincott -
r34064:6c6169f7 default
parent child Browse files
Show More
@@ -235,7 +235,8 b' class wirepeer(repository.legacypeer):'
235 235 success, data = d[:-1].split(" ", 1)
236 236 if int(success):
237 237 yield bin(data)
238 self._abort(error.RepoError(data))
238 else:
239 self._abort(error.RepoError(data))
239 240
240 241 @batchable
241 242 def heads(self):
General Comments 0
You need to be logged in to leave comments. Login now