[Buildbot-commits] buildbot/buildbot/steps shell.py, 1.28, 1.29 trigger.py, 1.6, 1.7

Brian Warner warner at users.sourceforge.net
Thu Jul 24 01:35:41 UTC 2008


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

Modified Files:
	shell.py trigger.py 
Log Message:
[project @ various: hush pyflakes by removing unused imports]

Original author: warner at lothar.com
Date: 2008-07-24 01:35:01+00:00

Index: shell.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/steps/shell.py,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- shell.py	24 Jul 2008 00:57:56 -0000	1.28
+++ shell.py	24 Jul 2008 01:35:38 -0000	1.29
@@ -8,6 +8,8 @@
 # for existing configurations that import WithProperties from here.  We like
 # to move this class around just to keep our readers guessing.
 from buildbot.process.properties import WithProperties
+_hush_pyflakes = [WithProperties]
+del _hush_pyflakes
 
 class ShellCommand(LoggingBuildStep):
     """I run a single shell command on the buildslave. I return FAILURE if

Index: trigger.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/steps/trigger.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- trigger.py	22 May 2008 22:13:17 -0000	1.6
+++ trigger.py	24 Jul 2008 01:35:38 -0000	1.7
@@ -1,5 +1,5 @@
 from buildbot.process.buildstep import LoggingBuildStep, SUCCESS, FAILURE, EXCEPTION
-from buildbot.process.properties import WithProperties, Properties
+from buildbot.process.properties import Properties
 from buildbot.scheduler import Triggerable
 from twisted.internet import defer
 





More information about the Commits mailing list