romfs pruner: fix filename check

This commit is contained in:
Thomas Gubler 2014-05-02 17:34:50 +02:00
parent 3424a65e32
commit d5e463352d
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ def main():
for (root, dirs, files) in os.walk(args.folder):
for file in files:
# only prune text files
if ".zip" in file or ".bin" or ".swp" in file:
if ".zip" in file or ".bin" in file or ".swp" in file:
continue
file_path = os.path.join(root, file)