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-09-20 22:29:19 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-20 22:29:19 +0400
commit8f5112f191e24aac86da7b70f461a50825e764da (patch)
treed5173d6b71e8d889a9766699ee0aa6eb89d7dbfb /build_files/buildbot
parent0af633a36ce34fc2d80fb571f4b0e73233563827 (diff)
pep8 update & some minor cmake edits.
Diffstat (limited to 'build_files/buildbot')
-rw-r--r--build_files/buildbot/master_unpack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/buildbot/master_unpack.py b/build_files/buildbot/master_unpack.py
index ad7c09933c6..cb63c1d3ffc 100644
--- a/build_files/buildbot/master_unpack.py
+++ b/build_files/buildbot/master_unpack.py
@@ -52,7 +52,7 @@ def get_platform(filename):
platform_tokens = []
found = False
- for i, token in enumerate(tokens):
+ for token in tokens:
if not found:
for platform in platforms:
if platform in token.lower():