[Request] [+ ] D9602: errors: raise InputError on recursive template definition
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Mon Dec 14 21:32:21 UTC 2020
martinvonz created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D9602
AFFECTED FILES
mercurial/templater.py
tests/test-template-basic.t
CHANGE DETAILS
diff --git a/tests/test-template-basic.t b/tests/test-template-basic.t
--- a/tests/test-template-basic.t
+++ b/tests/test-template-basic.t
@@ -265,7 +265,7 @@
> EOF
$ hg log --style ./issue4758
abort: recursive reference 'changeset' in template
- [255]
+ [10]
not a recursion if a keyword of the same name exists:
diff --git a/mercurial/templater.py b/mercurial/templater.py
--- a/mercurial/templater.py
+++ b/mercurial/templater.py
@@ -451,7 +451,7 @@
def _runrecursivesymbol(context, mapping, key):
- raise error.Abort(_(b"recursive reference '%s' in template") % key)
+ raise error.InputError(_(b"recursive reference '%s' in template") % key)
def buildtemplate(exp, context):
To: martinvonz, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20201214/bcd61447/attachment.html>
More information about the Mercurial-patches
mailing list