Mercurial > hg-stable
changeset 35003:fdd09d87635b stable
templater: fix "one arguments"
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Tue, 12 Dec 2017 16:29:26 +0800 |
parents | aa905f9cdcda |
children | 7b73bf1a48d4 |
files | mercurial/templater.py |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/templater.py Tue Dec 05 16:55:41 2017 -0500 +++ b/mercurial/templater.py Tue Dec 12 16:29:26 2017 +0800 @@ -918,7 +918,7 @@ """Return the max of an iterable""" if len(args) != 1: # i18n: "max" is a keyword - raise error.ParseError(_("max expects one arguments")) + raise error.ParseError(_("max expects one argument")) iterable = evalfuncarg(context, mapping, args[0]) try: @@ -933,7 +933,7 @@ """Return the min of an iterable""" if len(args) != 1: # i18n: "min" is a keyword - raise error.ParseError(_("min expects one arguments")) + raise error.ParseError(_("min expects one argument")) iterable = evalfuncarg(context, mapping, args[0]) try: @@ -958,7 +958,7 @@ """Compute obsfate related information based on markers (EXPERIMENTAL)""" if len(args) != 1: # i18n: "obsfateoperations" is a keyword - raise error.ParseError(_("obsfateoperations expects one arguments")) + raise error.ParseError(_("obsfateoperations expects one argument")) markers = evalfuncarg(context, mapping, args[0]) @@ -975,7 +975,7 @@ """Compute obsfate related information based on markers (EXPERIMENTAL)""" if len(args) != 1: # i18n: "obsfatedate" is a keyword - raise error.ParseError(_("obsfatedate expects one arguments")) + raise error.ParseError(_("obsfatedate expects one argument")) markers = evalfuncarg(context, mapping, args[0]) @@ -992,7 +992,7 @@ """Compute obsfate related information based on markers (EXPERIMENTAL)""" if len(args) != 1: # i18n: "obsfateusers" is a keyword - raise error.ParseError(_("obsfateusers expects one arguments")) + raise error.ParseError(_("obsfateusers expects one argument")) markers = evalfuncarg(context, mapping, args[0])