##// END OF EJS Templates
py3: fix loop over byte string in wireprotov1peer...
Yuya Nishihara -
r38350:aa9dd805 default
parent child Browse files
Show More
@@ -205,6 +205,7 b' test-import.t'
205 205 test-imports-checker.t
206 206 test-incoming-outgoing.t
207 207 test-inherit-mode.t
208 test-init.t
208 209 test-issue1089.t
209 210 test-issue1102.t
210 211 test-issue1175.t
@@ -227,6 +228,7 b' test-issue842.t'
227 228 test-journal-exists.t
228 229 test-journal-share.t
229 230 test-journal.t
231 test-known.t
230 232 test-largefiles-cache.t
231 233 test-largefiles-misc.t
232 234 test-largefiles-small-disk.t
@@ -450,9 +452,11 b' test-sparse-requirement.t'
450 452 test-sparse-verbose-json.t
451 453 test-sparse.t
452 454 test-split.t
455 test-ssh-bundle1.t
453 456 test-ssh-clone-r.t
454 457 test-ssh-proto-unbundle.t
455 458 test-ssh-proto.t
459 test-ssh.t
456 460 test-sshserver.py
457 461 test-stack.t
458 462 test-status-inprocess.py
@@ -355,7 +355,7 b' class wirepeer(repository.peer):'
355 355 yield {'nodes': wireprototypes.encodelist(nodes)}, f
356 356 d = f.value
357 357 try:
358 yield [bool(int(b)) for b in d]
358 yield [bool(int(b)) for b in pycompat.iterbytestr(d)]
359 359 except ValueError:
360 360 self._abort(error.ResponseError(_("unexpected response:"), d))
361 361
General Comments 0
You need to be logged in to leave comments. Login now