Show More
@@ -275,8 +275,7 b' class httprepository(remoterepository):' | |||
|
275 | 275 | try: |
|
276 | 276 | return map(bin, d[:-1].split(" ")) |
|
277 | 277 | except: |
|
278 |
sel |
|
|
279 | raise | |
|
278 | raise util.UnexpectedOutput(_("unexpected response:"), d) | |
|
280 | 279 | |
|
281 | 280 | def branches(self, nodes): |
|
282 | 281 | n = " ".join(map(hex, nodes)) |
@@ -285,8 +284,7 b' class httprepository(remoterepository):' | |||
|
285 | 284 | br = [ tuple(map(bin, b.split(" "))) for b in d.splitlines() ] |
|
286 | 285 | return br |
|
287 | 286 | except: |
|
288 |
sel |
|
|
289 | raise | |
|
287 | raise util.UnexpectedOutput(_("unexpected response:"), d) | |
|
290 | 288 | |
|
291 | 289 | def between(self, pairs): |
|
292 | 290 | n = "\n".join(["-".join(map(hex, p)) for p in pairs]) |
@@ -295,8 +293,7 b' class httprepository(remoterepository):' | |||
|
295 | 293 | p = [ l and map(bin, l.split(" ")) or [] for l in d.splitlines() ] |
|
296 | 294 | return p |
|
297 | 295 | except: |
|
298 |
sel |
|
|
299 | raise | |
|
296 | raise util.UnexpectedOutput(_("unexpected response:"), d) | |
|
300 | 297 | |
|
301 | 298 | def changegroup(self, nodes, kind): |
|
302 | 299 | n = " ".join(map(hex, nodes)) |
General Comments 0
You need to be logged in to leave comments.
Login now