Minor update

This commit is contained in:
Miroslav Stampar 2012-12-03 17:43:39 +01:00
parent e2aa695655
commit c636c26acc

View File

@ -38,6 +38,8 @@ if __name__ == "__main__":
print "looking for *.py scripts in subdirectories of ", BASE_DIRECTORY
for root, dirs, files in os.walk(BASE_DIRECTORY):
if any(_ in root for _ in ("extra", "thirdparty")):
continue
for name in files:
filepath = os.path.join(root, name)
check(filepath)