excluded files check

This commit is contained in:
Frank 2015-08-24 21:25:52 -04:00
parent dd757dbe38
commit bf38844bbd
1 changed files with 2 additions and 1 deletions

View File

@ -53,7 +53,8 @@ class Setup:
if fnmatch(normpath(join(root, path)), pattern):
removal.append(path)
for path in removal:
paths.remove(path)
if path in paths:
paths.remove(path)
return paths
def translate_title(self):