Submitter | Augie Fackler |
---|---|
Date | March 12, 2017, 6:57 p.m. |
Message ID | <74e974791be1479b80c6.1489345064@augie-macbookair2.roam.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/19206/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/parser.py b/mercurial/parser.py --- a/mercurial/parser.py +++ b/mercurial/parser.py @@ -265,7 +265,7 @@ def parseerrordetail(inst): """Compose error message from specified ParseError object """ if len(inst.args) > 1: - return _('at %s: %s') % (inst.args[1], inst.args[0]) + return _('at %d: %s') % (inst.args[1], inst.args[0]) else: return inst.args[0]