# HG changeset patch # User Yuya Nishihara # Date 1432045760 -32400 # Node ID 57fae767c52ba9c88933cd032f3e6b01d526aeba # Parent d032f57936f57b8db4fb0b1d2e4da58e5a248177 revset: drop translation marker from error message of _notpublic() It is a kind of an internal error. End user won't see it. diff -r d032f57936f5 -r 57fae767c52b mercurial/revset.py --- a/mercurial/revset.py Tue May 19 23:26:25 2015 +0900 +++ b/mercurial/revset.py Tue May 19 23:29:20 2015 +0900 @@ -1480,8 +1480,7 @@ # for internal use def _notpublic(repo, subset, x): - # i18n: "public" is a keyword - getargs(x, 0, 0, _("_notpublic takes no arguments")) + getargs(x, 0, 0, "_notpublic takes no arguments") if repo._phasecache._phasesets: s = set() for u in repo._phasecache._phasesets[1:]: