[Checkins] SVN: z3c.recipe.kgstest/trunk/src/z3c/recipe/kgstest/recipe.py we want *args, not a list

Wolfgang Schnerring wosc at wosc.de
Wed Jan 28 06:03:17 EST 2009


Log message for revision 95289:
  we want *args, not a list
  

Changed:
  U   z3c.recipe.kgstest/trunk/src/z3c/recipe/kgstest/recipe.py

-=-
Modified: z3c.recipe.kgstest/trunk/src/z3c/recipe/kgstest/recipe.py
===================================================================
--- z3c.recipe.kgstest/trunk/src/z3c/recipe/kgstest/recipe.py	2009-01-28 11:00:02 UTC (rev 95288)
+++ z3c.recipe.kgstest/trunk/src/z3c/recipe/kgstest/recipe.py	2009-01-28 11:03:16 UTC (rev 95289)
@@ -74,7 +74,7 @@
         return zc.buildout.easy_install.scripts(
             [(self.script, 'z3c.recipe.kgstest.runner', 'main')],
             ws, self.buildout['buildout']['executable'],
-            bindir, arguments = '[%s]' % ' ,'.join(runners))
+            bindir, arguments = '%s' % ', '.join(runners))
 
     def _wanted_packages(self):
         projects = []



More information about the Checkins mailing list