[Buildbot-commits] buildbot/contrib svn_buildbot.py,1.11,1.12

Brian Warner warner at users.sourceforge.net
Fri Jun 2 15:54:58 UTC 2006


Update of /cvsroot/buildbot/buildbot/contrib
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23397/contrib

Modified Files:
	svn_buildbot.py 
Log Message:
[project @ contrib/svn_buildbot.py: handle property changes correctly]

Original author: warner at lothar.com
Date: 2006-06-02 15:53:04

Index: svn_buildbot.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/contrib/svn_buildbot.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- svn_buildbot.py	22 Mar 2006 20:53:30 -0000	1.11
+++ svn_buildbot.py	2 Jun 2006 15:54:56 -0000	1.12
@@ -145,7 +145,8 @@
         changed = commands.getoutput('svnlook changed %s "%s"' % (rev_arg,
                                                                   repo)
                                      ).split('\n')
-        changed = [x[1:].strip() for x in changed]
+        # the first 6 columns can contain status information
+        changed = [x[6:].strip() for x in changed]
 
         message = commands.getoutput('svnlook log %s "%s"' % (rev_arg, repo))
         who = commands.getoutput('svnlook author %s "%s"' % (rev_arg, repo))





More information about the Commits mailing list