Fixed extension filtering in InventoryDirectory

pull/7527/head
Kevin Bell 11 years ago committed by James Cammarata
parent d6214c5d56
commit 2432b45eb1

@ -40,9 +40,8 @@ class InventoryDirectory(object):
for i in self.names:
# Skip files that end with certain extensions or characters
for ext in ("~", ".orig", ".bak", ".ini", ".retry", ".pyc", ".pyo"):
if i.endswith(ext):
continue
if any(i.endswith(ext) for ext in ("~", ".orig", ".bak", ".ini", ".retry", ".pyc", ".pyo")):
continue
# Skip hidden files
if i.startswith('.') and not i.startswith('./'):
continue

Loading…
Cancel
Save