[Zope-CVS] CVS: Packages/TestScripts - autotester.py:1.23
Fred L. Drake, Jr.
fred@zope.com
Wed, 26 Feb 2003 15:55:06 -0500
Update of /cvs-repository/Packages/TestScripts
In directory cvs.zope.org:/tmp/cvs-serv20082
Modified Files:
autotester.py
Log Message:
Remove unnecessary "global" statement.
=== Packages/TestScripts/autotester.py 1.22 => 1.23 ===
--- Packages/TestScripts/autotester.py:1.22 Wed Feb 26 14:05:41 2003
+++ Packages/TestScripts/autotester.py Wed Feb 26 15:55:05 2003
@@ -48,7 +48,6 @@
# executor
def execute(location,python,command,options):
- global sandbox
os.chdir(os.path.join(sandbox,location))
(i,c,e) = os.popen3(python+' '+command+' '+options)
ct = NonBlockingReader(c)