mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1024975 - [browser] Ignore searchplugins/metrolist.txt in filter.py. r=gavin, f=pike
This commit is contained in:
parent
a366ea468a
commit
b630b14794
@ -20,7 +20,10 @@ def test(mod, path, entity = None):
|
||||
if mod == "extensions/spellcheck":
|
||||
return "ignore"
|
||||
# browser
|
||||
return "ignore" if re.match(r"searchplugins\/.+\.xml", path) else "error"
|
||||
if (re.match(r"searchplugins\/.+\.xml", path) or
|
||||
path == "searchplugins/metrolist.txt"):
|
||||
return "ignore"
|
||||
return "error"
|
||||
if mod == "extensions/spellcheck":
|
||||
# l10n ships en-US dictionary or something, do compare
|
||||
return "error"
|
||||
|
Loading…
Reference in New Issue
Block a user