mercurial/wireprotov1peer.py
changeset 43117 8ff1ecfadcd1
parent 43106 d783f945a701
child 43506 9f70512ae2cf
--- a/mercurial/wireprotov1peer.py	Tue Oct 08 15:15:37 2019 -0700
+++ b/mercurial/wireprotov1peer.py	Tue Oct 08 15:06:18 2019 -0700
@@ -143,12 +143,12 @@
     def callcommand(self, command, args):
         if self._sent:
             raise error.ProgrammingError(
-                b'callcommand() cannot be used ' b'after commands are sent'
+                b'callcommand() cannot be used after commands are sent'
             )
 
         if self._closed:
             raise error.ProgrammingError(
-                b'callcommand() cannot be used ' b'after close()'
+                b'callcommand() cannot be used after close()'
             )
 
         # Commands are dispatched through methods on the peer.