wmllint: don't even try to convert _info.cfg
(cherry-picked from commit 6e696661fd
)
This commit is contained in:
parent
46f9d93c4c
commit
236ca25832
1 changed files with 2 additions and 1 deletions
|
@ -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."
|
||||
|
|
Loading…
Add table
Reference in a new issue