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>2013-03-28 23:33:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-28 23:33:14 +0400
commit8e3d590b76222c332d40dfeca81d899e1df5c503 (patch)
tree84bc1ca0b6e645d463034594dd76814d9121c9f0 /build_files
parent8fce915b6e6b008e89696c7ff96355d9a1f2ccf1 (diff)
code cleanup: python/pep8 and double-promotion warnings.
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/slave_compile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index caa4acc4ecd..a8fc05829fb 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -156,9 +156,9 @@ else:
if builder.find('win') != -1:
dlls = ('msvcm90.dll', 'msvcp90.dll', 'msvcr90.dll', 'vcomp90.dll', 'Microsoft.VC90.CRT.manifest', 'Microsoft.VC90.OpenMP.manifest')
if builder.find('win64') == -1:
- dlls_path = 'C:\\b\\redist\\x86'
+ dlls_path = 'C:\\b\\redist\\x86'
else:
- dlls_path = 'C:\\b\\redist\\amd64'
+ dlls_path = 'C:\\b\\redist\\amd64'
for dll in dlls:
shutil.copyfile(os.path.join(dlls_path, dll), os.path.join(install_dir, dll))