[Buildbot-commits] buildbot/buildbot/steps maxq.py,1.3,1.4

Brian Warner warner at users.sourceforge.net
Mon Jun 18 03:58:25 UTC 2007


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

Modified Files:
	maxq.py 
Log Message:
[project @ test_config.py: make sure we can round-trip all of our current step classes]

Original author: warner at lothar.com
Date: 2007-06-18 03:51:32+00:00

Index: maxq.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/steps/maxq.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- maxq.py	18 Jun 2007 03:58:17 -0000	1.3
+++ maxq.py	18 Jun 2007 03:58:23 -0000	1.4
@@ -8,8 +8,8 @@
     def __init__(self, testdir=None, **kwargs):
         if not testdir:
             raise TypeError("please pass testdir")
-        command = 'run_maxq.py %s' % (testdir,)
-        ShellCommand.__init__(self, command=command, **kwargs)
+        kwargs['command'] = 'run_maxq.py %s' % (testdir,)
+        ShellCommand.__init__(self, **kwargs)
         self.addFactoryArguments(testdir=testdir)
 
     def startStatus(self):





More information about the Commits mailing list