mercurial/wireproto.py
changeset 34731 31fdd0509de9
parent 34730 6be264009841
child 34739 b880cc11da5d
--- a/mercurial/wireproto.py	Sun Oct 15 00:06:06 2017 -0400
+++ b/mercurial/wireproto.py	Sun Oct 15 00:40:07 2017 -0400
@@ -907,7 +907,7 @@
     except Exception as inst:
         r = str(inst)
         success = 0
-    return "%s %s\n" % (success, r)
+    return "%d %s\n" % (success, r)
 
 @wireprotocommand('known', 'nodes *')
 def known(repo, proto, nodes, others):