[Buildbot-commits] buildbot/buildbot/changes pb.py,1.8,1.9
Brian Warner
warner at users.sourceforge.net
Tue Oct 25 01:26:13 UTC 2005
Update of /cvsroot/buildbot/buildbot/buildbot/changes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8323/buildbot/changes
Modified Files:
pb.py
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-382
Creator: Brian Warner <warner at lothar.com>
update manual, add --branch to 'buildbot sendchange'
* docs/buildbot.texinfo: update lots of stuff
* buildbot/scripts/runner.py (sendchange): add a --branch argument
to the 'buildbot sendchange' command
* buildbot/clients/sendchange.py (Sender.send): same
* buildbot/changes/pb.py (ChangePerspective): same
* buildbot/test/test_changes.py (Sender.testSender): test it
Index: pb.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/changes/pb.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- pb.py 17 May 2005 10:14:09 -0000 1.8
+++ pb.py 25 Oct 2005 01:26:11 -0000 1.9
@@ -42,7 +42,9 @@
change = changes.Change(changedict['who'],
pathnames,
changedict['comments'],
- revision=changedict.get('revision'))
+ branch=changedict.get('branch'),
+ revision=changedict.get('revision'),
+ )
self.changemaster.addChange(change)
class PBChangeSource(base.ChangeSource):
More information about the Commits
mailing list