Submitter | Augie Fackler |
---|---|
Date | March 6, 2015, 11:01 p.m. |
Message ID | <0c7f94a49b2fd024e545.1425682903@arthedain.pit.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/7913/ |
State | Accepted |
Commit | cecaec0e8719ebf62d5b5c33ba2912a580a6b865 |
Headers | show |
Comments
Patch
diff --git a/mercurial/fileset.py b/mercurial/fileset.py --- a/mercurial/fileset.py +++ b/mercurial/fileset.py @@ -186,7 +186,7 @@ def clean(mctx, x): def func(mctx, a, b): if a[0] == 'symbol' and a[1] in symbols: return symbols[a[1]](mctx, b) - raise error.ParseError(_("not a function: %s") % a[1]) + raise error.UnknownIdentifier(a[1], symbols.keys()) def getlist(x): if not x: