Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-03-27 09:23:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-03-27 09:23:14 +0400
commit50a06eccff48a2029fa085dc8459246ff8c6394e (patch)
tree8c7d733b9358317b425833e8a3497dd200446504 /source/tests/pep8.py
parent7ccfec1ff3ea0ee0ebdbdb91e3e44ab03ab81d6f (diff)
pep8 cleanup
Diffstat (limited to 'source/tests/pep8.py')
-rw-r--r--source/tests/pep8.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/tests/pep8.py b/source/tests/pep8.py
index 3872d169a9a..67ef12261d0 100644
--- a/source/tests/pep8.py
+++ b/source/tests/pep8.py
@@ -42,7 +42,7 @@ SKIP_PREFIX = "./tools", "./config", "./scons", "./extern"
def file_list_py(path):
for dirpath, dirnames, filenames in os.walk(path):
for filename in filenames:
- if filename.endswith(".py"):
+ if filename.endswith(".py") or filename.endswith(".cfg"):
yield os.path.join(dirpath, filename)