[Erp5-report] r15588 - /erp5/trunk/products/ERP5/tests/testXHTML.py

nobody at svn.erp5.org nobody at svn.erp5.org
Fri Aug 10 09:58:14 CEST 2007


Author: jerome
Date: Fri Aug 10 09:58:14 2007
New Revision: 15588

URL: http://svn.erp5.org?rev=15588&view=rev
Log:
mistake in previous commit, it was unable to find business templates in
$INSTANCE_HOME/bt5/*/


Modified:
    erp5/trunk/products/ERP5/tests/testXHTML.py

Modified: erp5/trunk/products/ERP5/tests/testXHTML.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/tests/testXHTML.py?rev=15588&r1=15587&r2=15588&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/tests/testXHTML.py (original)
+++ erp5/trunk/products/ERP5/tests/testXHTML.py Fri Aug 10 09:58:14 2007
@@ -159,7 +159,7 @@
     if not ( os.path.exists(business_template) or
         os.path.exists('%s.bt5' % business_template)):
       # try in $INSTANCE_HOME/bt5/*/
-      business_template_glob_list = glob('%s/*/%s' % (i, business_template))
+      business_template_glob_list = glob('%s/*/%s' % (bt5_base_path, i))
       if business_template_glob_list:
         business_template = business_template_glob_list[0]
 




More information about the Erp5-report mailing list