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-04-01 06:41:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-04-01 06:41:15 +0400
commitc8652b301fb59eead1f76bf34215af5413ffa4aa (patch)
treec80cb73435621bce2c473c5063ab9e2c266be5c8 /build_files/cmake/example_scripts
parent14e94d742e985488490cbbb74e6e1dc9923bc4c2 (diff)
pep8 checker, mostly pedantic style changes but also found an error in mesh_utils.mesh_linked_faces()
Diffstat (limited to 'build_files/cmake/example_scripts')
-rwxr-xr-xbuild_files/cmake/example_scripts/make_quicky.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/build_files/cmake/example_scripts/make_quicky.py b/build_files/cmake/example_scripts/make_quicky.py
index d7c43f4b86e..a4e0d3371f1 100755
--- a/build_files/cmake/example_scripts/make_quicky.py
+++ b/build_files/cmake/example_scripts/make_quicky.py
@@ -43,8 +43,8 @@ def main():
targets = set()
# collect targets
- file = open("Makefile", "r")
- for line in file:
+ makefile = open("Makefile", "r")
+ for line in makefile:
line = line.rstrip()
if not line or line[0] in ". \t@$#":
continue
@@ -59,7 +59,7 @@ def main():
continue
targets.add(line)
- file.close()
+ makefile.close()
# remove cmake targets
bad = set([