[Zope-CVS] CVS: Packages/TestScripts - autotester.py:1.20

Fred L. Drake, Jr. fred@zope.com
Wed, 26 Feb 2003 11:41:22 -0500


Update of /cvs-repository/Packages/TestScripts
In directory cvs.zope.org:/tmp/cvs-serv2719

Modified Files:
	autotester.py 
Log Message:
- wrap some long lines
- remove trailing blank lines


=== Packages/TestScripts/autotester.py 1.19 => 1.20 ===
--- Packages/TestScripts/autotester.py:1.19	Wed Feb 26 11:24:35 2003
+++ Packages/TestScripts/autotester.py	Wed Feb 26 11:41:21 2003
@@ -64,7 +64,10 @@
 def xml_execute(commands,p):
     result=[]
     for command in commands:
-        result.append(execute(command['location'][0](),p,command['command'][0](),command['options'][0]()))
+        result.append(execute(command['location'][0](),
+                              p,
+                              command['command'][0](),
+                              command['options'][0]()))
     return '\n'.join(result)
 
 # get our original directory
@@ -107,7 +110,8 @@
         # change dir to the right place
         chdir(join(sandbox,location))
         # do the checkout
-        system(config['cvs'][0]['command'][0]()+" -z9 export -r "+tag+" -d "+name+" "+module)
+        system(config['cvs'][0]['command'][0]()
+               +" -z9 export -r "+tag+" -d "+name+" "+module)
 
     # get the python command
     p = config['python'][0][scenario['python'][0]()][0]()
@@ -207,5 +211,3 @@
          '\n'.join(format_exception(*exc_info())),
          smtp_server=smtp_server,
          from_address=from_address)
-    
-