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