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:
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)