mercurial/revset.py
changeset 27517 c60a9c16ae25
parent 27440 ff305ab2e0d7
child 27584 fc7c8cac6a4b
equal deleted inserted replaced
27516:1c1216182dc1 27517:c60a9c16ae25
   446 
   446 
   447 def notset(repo, subset, x):
   447 def notset(repo, subset, x):
   448     return subset - getset(repo, subset, x)
   448     return subset - getset(repo, subset, x)
   449 
   449 
   450 def listset(repo, subset, a, b):
   450 def listset(repo, subset, a, b):
   451     raise error.ParseError(_("can't use a list in this context"))
   451     raise error.ParseError(_("can't use a list in this context"),
       
   452                            hint=_('see hg help "revsets.x or y"'))
   452 
   453 
   453 def keyvaluepair(repo, subset, k, v):
   454 def keyvaluepair(repo, subset, k, v):
   454     raise error.ParseError(_("can't use a key-value pair in this context"))
   455     raise error.ParseError(_("can't use a key-value pair in this context"))
   455 
   456 
   456 def func(repo, subset, a, b):
   457 def func(repo, subset, a, b):