[Erp5-report] r37705 leonardo - /erp5/trunk/utils/erp5.recipe.testrunner/src/erp5/recipe/te...

nobody at svn.erp5.org nobody at svn.erp5.org
Wed Aug 11 15:13:04 CEST 2010


Author: leonardo
Date: Wed Aug 11 15:13:00 2010
New Revision: 37705

URL: http://svn.erp5.org?rev=37705&view=rev
Log:
slightly more robust bt5 path joining logic

Modified:
    erp5/trunk/utils/erp5.recipe.testrunner/src/erp5/recipe/testrunner/__init__.py

Modified: erp5/trunk/utils/erp5.recipe.testrunner/src/erp5/recipe/testrunner/__init__.py
URL: http://svn.erp5.org/erp5/trunk/utils/erp5.recipe.testrunner/src/erp5/recipe/testrunner/__init__.py?rev=37705&r1=37704&r2=37705&view=diff
==============================================================================
--- erp5/trunk/utils/erp5.recipe.testrunner/src/erp5/recipe/testrunner/__init__.py [utf8] (original)
+++ erp5/trunk/utils/erp5.recipe.testrunner/src/erp5/recipe/testrunner/__init__.py [utf8] Wed Aug 11 15:13:00 2010
@@ -97,7 +97,7 @@ class Recipe:
         
         bt5_path_list = options.get('bt5_path', '').splitlines()
         if len(bt5_path_list) > 0:
-            bt5_path = ','.join([i.strip() for i in bt5_path_list if i != ''])
+            bt5_path = ','.join([i.strip() for i in bt5_path_list if i.strip()])
             init += add_bt5_path_template % dict(bt5_path=bt5_path)
 
         erp5_sql_connection_string = options.get('erp5_sql_connection_string',




More information about the Erp5-report mailing list