[pypy-commit] buildbot 0.8.4-compat: I don't actualy understand what was this render() call supposed to do, since masterdest seems to be a string. Anyway, .render does not exists in the new buildbot, comment out. Tests still pass

antocuni noreply at buildbot.pypy.org
Mon Aug 8 15:59:04 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 0.8.4-compat
Changeset: r574:a259170dcff1
Date: 2011-08-08 16:01 +0200
http://bitbucket.org/pypy/buildbot/changeset/a259170dcff1/

Log:	I don't actualy understand what was this render() call supposed to
	do, since masterdest seems to be a string. Anyway, .render does not
	exists in the new buildbot, comment out. Tests still pass

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -37,8 +37,8 @@
         branch = properties['branch']
         if branch is None:
             branch = 'trunk'
-        masterdest = properties.render(self.masterdest)
-        masterdest = os.path.expanduser(masterdest)
+        #masterdest = properties.render(self.masterdest)
+        masterdest = os.path.expanduser(self.masterdest)
         if branch.startswith('/'):
             branch = branch[1:]
         # workaround for os.path.join


More information about the pypy-commit mailing list