Submitter | phabricator |
---|---|
Date | April 3, 2018, 10:50 a.m. |
Message ID | <eccc6f58c332d0a6b8efe5b6b64fa8b9@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/30158/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/histedit.py b/hgext/histedit.py --- a/hgext/histedit.py +++ b/hgext/histedit.py @@ -436,7 +436,7 @@ rulehash = _ctx.hex() rev = node.bin(rulehash) except error.RepoLookupError: - raise error.ParseError("invalid changeset %s" % ruleid) + raise error.ParseError(_("invalid changeset %s") % ruleid) return cls(state, rev) def verify(self, prev, expected, seen):