[Buildbot-commits] buildbot/buildbot/slave bot.py, 1.19, 1.20 commands.py, 1.61, 1.62

Brian Warner warner at users.sourceforge.net
Wed Sep 6 00:41:57 UTC 2006


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

Modified Files:
	bot.py commands.py 
Log Message:
[project @ remove a lot of unused imports, marked by pyflakes]

Original author: warner at lothar.com
Date: 2006-09-06 00:35:06

Index: bot.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/slave/bot.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- bot.py	28 Jun 2006 17:42:28 -0000	1.19
+++ bot.py	6 Sep 2006 00:41:55 -0000	1.20
@@ -1,9 +1,9 @@
 #! /usr/bin/python
 
-import time, os, os.path, re, sys
+import os.path
 
 from twisted.spread import pb
-from twisted.python import log, usage, failure
+from twisted.python import log
 from twisted.internet import reactor, defer
 from twisted.application import service, internet
 from twisted.cred import credentials

Index: commands.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/slave/commands.py,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -d -r1.61 -r1.62
--- commands.py	23 Aug 2006 07:13:36 -0000	1.61
+++ commands.py	6 Sep 2006 00:41:55 -0000	1.62
@@ -1,6 +1,6 @@
 # -*- test-case-name: buildbot.test.test_slavecommand -*-
 
-import os, os.path, re, signal, shutil, types, time
+import os, re, signal, shutil, types, time
 from stat import ST_CTIME, ST_MTIME, ST_SIZE
 
 from twisted.internet.protocol import ProcessProtocol





More information about the Commits mailing list