[Buildbot-commits] buildbot/buildbot/steps source.py,1.6,1.7
Brian Warner
warner at users.sourceforge.net
Tue Jul 3 19:17:51 UTC 2007
Update of /cvsroot/buildbot/buildbot/buildbot/steps
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26243/buildbot/steps
Modified Files:
source.py
Log Message:
[project @ when using a patch in a Source step, add [patch] to the description. Closes #49]
Original author: warner at lothar.com
Date: 2007-07-03 19:14:45+00:00
Index: source.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/steps/source.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- source.py 18 Jun 2007 02:52:49 -0000 1.6
+++ source.py 3 Jul 2007 19:17:49 -0000 1.7
@@ -465,6 +465,8 @@
revstuff.append("[branch]")
if revision is not None:
revstuff.append("r%s" % revision)
+ if patch is not None:
+ revstuff.append("[patch]")
self.description.extend(revstuff)
self.descriptionDone.extend(revstuff)
More information about the Commits
mailing list