Submitter | phabricator |
---|---|
Date | Oct. 16, 2017, 1:30 a.m. |
Message ID | <differential-rev-PHID-DREV-aqdsjrngag5bjtkohhdz-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/24961/ |
State | Superseded |
Headers | show |
Comments
ryanmce accepted this revision. ryanmce added a comment. This revision is now accepted and ready to land. queued REPOSITORY rHG Mercurial REVISION DETAIL https://phab.mercurial-scm.org/D1102 To: durin42, #hg-reviewers, ryanmce Cc: ryanmce, mercurial-devel
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):