# HG changeset patch # User Pulkit Goyal # Date 1533806428 -10800 # Node ID 05ded838c9978a96907544dc151e11d382c528e8 # Parent 467b5c1df72d8c9bdf9f0ca51cd5601b1c91ee65 narrow: add '()' to ellipsis in the revset help ellipsis is a revset function and was missing () after it's name in the help text. This might confuse users as they try `hg log -r 'ellipsis'`. Differential Revision: https://phab.mercurial-scm.org/D4167 diff -r 467b5c1df72d -r 05ded838c997 hgext/narrow/narrowtemplates.py --- a/hgext/narrow/narrowtemplates.py Thu Aug 09 10:11:10 2018 -0400 +++ b/hgext/narrow/narrowtemplates.py Thu Aug 09 12:20:28 2018 +0300 @@ -42,7 +42,7 @@ return 'outsidenarrow' return '' -@revsetpredicate('ellipsis') +@revsetpredicate('ellipsis()') def ellipsisrevset(repo, subset, x): """Changesets that are ellipsis nodes.""" return subset.filter(lambda r: _isellipsis(repo, r))