equal
deleted
inserted
replaced
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): |