[Buildbot-commits] buildbot/buildbot/status words.py,1.44,1.45
Brian Warner
warner at users.sourceforge.net
Sat Oct 22 21:10:07 UTC 2005
Update of /cvsroot/buildbot/buildbot/buildbot/status
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14190/buildbot/status
Modified Files:
words.py
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-352
Creator: Brian Warner <warner at lothar.com>
remove old freshcvs stuff from twisted_master.cfg
* buildbot/status/words.py (IrcStatusBot.command_FORCE): note that
the 'force' command requires python2.3, for the shlex.split method
* docs/examples/twisted_master.cfg: remove old freshcvs stuff,
since we don't use it anymore. The Twisted buildbot uses a
PBChangeSource now.
Index: words.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/status/words.py,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- words.py 21 Oct 2005 08:03:39 -0000 1.44
+++ words.py 22 Oct 2005 21:10:05 -0000 1.45
@@ -288,7 +288,7 @@
self.reply(reply, "Build details are at %s" % buildurl)
def command_FORCE(self, user, reply, args):
- args = shlex.split(args)
+ args = shlex.split(args) # TODO: this requires python2.3 or newer
if args.pop(0) != "build":
raise UsageError("try 'force build WHICH <REASON>'")
opts = ForceOptions()
More information about the Commits
mailing list