diff --git a/data/tools/wmllint b/data/tools/wmllint index 60202ed396c3..cfe512443c5e 100755 --- a/data/tools/wmllint +++ b/data/tools/wmllint @@ -2969,7 +2969,8 @@ vctypes = (".svn", ".git", ".hg") def interesting(fn): "Is a file interesting for conversion purposes?" - return fn.endswith(".cfg") or is_map(fn) or issave(fn) + return (fn.endswith(".cfg") and not fn.endswith("_info.cfg")) \ + or is_map(fn) or issave(fn) def allcfgfiles(directory): "Get the names of all interesting files under directory."