wmllint: Treat .mask files as maps

This commit is contained in:
Celtic Minstrel 2019-09-02 12:04:12 -04:00
parent 9be9dd931d
commit 8ce01da249

View file

@ -2553,7 +2553,7 @@ def maptransform(filename, baseline, inmap, y):
def is_map(filename):
"Is this file a map?"
return filename.endswith(".map")
return filename.endswith(".map") or filename.endswith(".mask")
if 0: # Not used, as there are currently no defined map transforms
class maptransform_error(BaseException):