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-02-16 05:25:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-16 05:25:03 +0300
commitfee5363912d93f3ef99f3a012f5d3d3f29abe8db (patch)
tree6f68ee5445b5e72dfd4062c2caf29bf9717e660b /build_files/cmake/cmake_consistency_check.py
parent78c135d93efe758143d21f1808c0aa7d4d902c23 (diff)
bugfix [#26094] Going to Bone Roll menu brings up python error
also correct for pep8 warnings.
Diffstat (limited to 'build_files/cmake/cmake_consistency_check.py')
-rw-r--r--build_files/cmake/cmake_consistency_check.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/build_files/cmake/cmake_consistency_check.py b/build_files/cmake/cmake_consistency_check.py
index 87bbc929a93..ec82d1b3b23 100644
--- a/build_files/cmake/cmake_consistency_check.py
+++ b/build_files/cmake/cmake_consistency_check.py
@@ -62,11 +62,6 @@ def source_list(path, filename_check=None):
# extension checking
-def is_c_header(filename):
- ext = splitext(filename)[1]
- return (ext in (".h", ".hpp", ".hxx"))
-
-
def is_cmake(filename):
ext = splitext(filename)[1]
return (ext == ".cmake") or (filename == "CMakeLists.txt")