Skip to content
Snippets Groups Projects
Commit 7db24328 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

py3: add missing b'' literal to sshprotoext.py

Everywhere else in this file uses b''. I must have missed a line
when I wrote this code a few days ago.

# skip-blame b prefix

Differential Revision: https://phab.mercurial-scm.org/D2173
parent 3a763d7f
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@
l = self._fin.readline()
assert l == b'between\n'
l = self._fin.readline()
assert l == 'pairs 81\n'
assert l == b'pairs 81\n'
self._fin.read(81)
# Send the upgrade response.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment