Submitter | phabricator |
---|---|
Date | Oct. 16, 2017, 9:17 a.m. |
Message ID | <667ce0670d581def14815f1f15298de7@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/24970/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/wireproto.py b/mercurial/wireproto.py --- a/mercurial/wireproto.py +++ b/mercurial/wireproto.py @@ -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):