Mercurial > public > mercurial-scm > hg-stable
diff mercurial/templater.py @ 27293:9e06e7fb037d
grammar: favor zero, one, two over ... or no
author | timeless <timeless@mozdev.org> |
---|---|
date | Mon, 30 Nov 2015 19:30:16 +0000 |
parents | 56b2bcea2529 |
children | b502138f5faa |
line wrap: on
line diff
--- a/mercurial/templater.py Mon Nov 30 19:29:46 2015 +0000 +++ b/mercurial/templater.py Mon Nov 30 19:30:16 2015 +0000 @@ -336,7 +336,7 @@ specifying files to include or exclude.""" if len(args) > 2: # i18n: "diff" is a keyword - raise error.ParseError(_("diff expects one, two or no arguments")) + raise error.ParseError(_("diff expects zero, one, or two arguments")) def getpatterns(i): if i < len(args):