From 50a06eccff48a2029fa085dc8459246ff8c6394e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 27 Mar 2011 05:23:14 +0000 Subject: pep8 cleanup --- source/tests/pep8.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/tests/pep8.py') 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) -- cgit v1.2.3