another small followup to
bug 410613 - fix compare-locales for new searchplugins, r=Neil
--- a/suite/locales/filter.py
+++ b/suite/locales/filter.py
@@ -9,18 +9,17 @@ def test(mod, path, entity = None):
re.match(r".*~$", path) or
re.match(r".+\.(orig|rej)", path)):
return False
if mod not in ("suite"):
# we only have exceptions for suite
return True
if entity is None:
# missing and obsolete files
- return not (re.match(r"searchplugins\/.+\.src", path) or
- re.match(r"searchplugins\/.+\.png", path) or
+ return not (re.match(r"searchplugins\/.+\.xml", path) or
re.match(r"chrome\/common\/help\/images\/[A-Za-z-_]+\.[a-z]+", path))
if path == "defines.inc":
return entity != "MOZ_LANGPACK_CONTRIBUTORS"
if path == "profile/bookmarks.extra" or path == "profile/panels.extra":
# ignore files for additional bookmarks and panels
return False
return True