Author: Matti Picus <[email protected]>
Branch: 
Changeset: r1129:9984670940a2
Date: 2020-01-27 23:33 +0200
http://bitbucket.org/pypy/buildbot/changeset/9984670940a2/

Log:    branch was None by default

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -933,6 +933,8 @@
             exe = os.path.split(target)[-1][:-2]
             rev = props.getProperty('got_revision')
             branch = props.getProperty('branch')
+            if branch == 'None' or branch is None:
+                branch = 'default'
             command=["python", "runner.py", '--output-filename', 'result.json',
                      '--changed', target,
                      '--baseline', target,
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to