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-11-19 20:17:35 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-19 20:17:35 +0400
commitd9e99abe3753591d510dbb58813bbc29e3381b57 (patch)
tree85d247d274f8c9d2650f6df4d3c8a6ac2f25e7bc /build_files/cmake/project_info.py
parentddf207b7c3d1cafb0485da268608b1fc875c13f0 (diff)
hide overly picky warnings from 'pylint' for pep8 script, indentation edits.
Diffstat (limited to 'build_files/cmake/project_info.py')
-rwxr-xr-xbuild_files/cmake/project_info.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/build_files/cmake/project_info.py b/build_files/cmake/project_info.py
index dca41849a49..65afd109302 100755
--- a/build_files/cmake/project_info.py
+++ b/build_files/cmake/project_info.py
@@ -149,10 +149,11 @@ def cmake_advanced_info():
from xml.dom.minidom import parse
tree = parse(join(CMAKE_DIR, ".cproject"))
- '''
- f = open(".cproject_pretty", 'w')
- f.write(tree.toprettyxml(indent=" ", newl=""))
- '''
+
+ # to check on nicer xml
+ # f = open(".cproject_pretty", 'w')
+ # f.write(tree.toprettyxml(indent=" ", newl=""))
+
ELEMENT_NODE = tree.ELEMENT_NODE
cproject, = tree.getElementsByTagName("cproject")