[fix] do not check swap files from Vim which make the linter fail.

This commit is contained in:
Moul 2016-11-05 20:09:10 +01:00
parent 81ddabf580
commit 468e6ff936

View file

@ -217,7 +217,7 @@ if __name__ == '__main__':
i, scripts = 0, ["install", "remove", "upgrade", "backup", "restore"] i, scripts = 0, ["install", "remove", "upgrade", "backup", "restore"]
for (dirpath, dirnames, filenames) in os.walk(os.path.join(app_path, "scripts")): for (dirpath, dirnames, filenames) in os.walk(os.path.join(app_path, "scripts")):
for filename in filenames: for filename in filenames:
if filename not in scripts: if filename not in scripts and filename[-4:] != ".swp":
scripts.append(filename) scripts.append(filename)
while i < len(scripts): while i < len(scripts):
check_script(app_path, scripts[i]) check_script(app_path, scripts[i])