diff -r 1c1216182dc1 -r c60a9c16ae25 mercurial/revset.py --- a/mercurial/revset.py Wed Dec 23 17:39:32 2015 +0000 +++ b/mercurial/revset.py Wed Dec 23 17:54:03 2015 +0000 @@ -448,7 +448,8 @@ return subset - getset(repo, subset, x) def listset(repo, subset, a, b): - raise error.ParseError(_("can't use a list in this context")) + raise error.ParseError(_("can't use a list in this context"), + hint=_('see hg help "revsets.x or y"')) def keyvaluepair(repo, subset, k, v): raise error.ParseError(_("can't use a key-value pair in this context"))