[Buildbot-commits] buildbot/buildbot/slave bot.py,1.6,1.7
Brian Warner
warner at users.sourceforge.net
Fri Apr 1 06:02:27 UTC 2005
Update of /cvsroot/buildbot/buildbot/buildbot/slave
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10144/buildbot/slave
Modified Files:
bot.py
Log Message:
(Bot.remote_setBuilderList): fix typo that caused a warning each time the
master changed our set of builders
Index: bot.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/slave/bot.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- bot.py 11 Dec 2004 11:12:35 -0000 1.6
+++ bot.py 1 Apr 2005 06:02:24 -0000 1.7
@@ -261,7 +261,7 @@
for name in self.builders.keys():
if not name in map(lambda a: a[0], wanted):
log.msg("removing old builder %s" % name)
- self.builder[name].disownServiceParent()
+ self.builders[name].disownServiceParent()
del(self.builders[name])
return retval
More information about the Commits
mailing list