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:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-07-27 12:49:05 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-07-27 12:49:05 +0300
commitce092a58a296c8bdfa5086f9084bbe928a24b73c (patch)
treef17ab197d8330e076d33773bb80c05a8b210cbad /build_files/buildbot/slave_pack.py
parente5d7cbd191d593a9751d0bfc35971aa8d2698452 (diff)
Buildbot: Missed this in the previous commit
Diffstat (limited to 'build_files/buildbot/slave_pack.py')
-rw-r--r--build_files/buildbot/slave_pack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/buildbot/slave_pack.py b/build_files/buildbot/slave_pack.py
index 3cab27c2ecf..aa1f944bb0a 100644
--- a/build_files/buildbot/slave_pack.py
+++ b/build_files/buildbot/slave_pack.py
@@ -140,7 +140,7 @@ else:
if os.path.exists(upload_zip):
os.remove(upload_zip)
z = zipfile.ZipFile(upload_zip, "w", compression=zipfile.ZIP_STORED)
- z.write("{}.zip".format(builder))
+ z.write("{}.zip".format(builderified_name))
z.close()
sys.exit(retcode)
except Exception as ex: