Skip to content
Snippets Groups Projects
Commit a53b87e2 authored by Sangeet Kumar Mishra's avatar Sangeet Kumar Mishra
Browse files

histedit: make errror message translatable

This is a follow up patch to https://phab.mercurial-scm.org/D2394
As suggested by Yuya, this patch makes the error message translatable

Differential Revision: https://phab.mercurial-scm.org/D3031
parent de4849b6
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment