# HG changeset patch # User Gregory Szorc # Date 1518405867 28800 # Node ID 7db243288afb73fd90abca9812515ec989f5b0d4 # Parent 3a763d7f40e14d9af0c2ded935ee18e31f3d5cf9 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 diff -r 3a763d7f40e1 -r 7db243288afb tests/sshprotoext.py --- a/tests/sshprotoext.py Sun Feb 11 19:11:17 2018 -0800 +++ b/tests/sshprotoext.py Sun Feb 11 19:24:27 2018 -0800 @@ -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.