[Erp5-report] r41079 luke - /erp5/trunk/utils/erp5.appliance.test/src/test.py

nobody at svn.erp5.org nobody at svn.erp5.org
Fri Dec 3 10:31:32 CET 2010


Author: luke
Date: Fri Dec  3 10:31:32 2010
New Revision: 41079

URL: http://svn.erp5.org?rev=41079&view=rev
Log:
 - fix syntax error

Modified:
    erp5/trunk/utils/erp5.appliance.test/src/test.py

Modified: erp5/trunk/utils/erp5.appliance.test/src/test.py
URL: http://svn.erp5.org/erp5/trunk/utils/erp5.appliance.test/src/test.py?rev=41079&r1=41078&r2=41079&view=diff
==============================================================================
--- erp5/trunk/utils/erp5.appliance.test/src/test.py [utf8] (original)
+++ erp5/trunk/utils/erp5.appliance.test/src/test.py [utf8] Fri Dec  3 10:31:32 2010
@@ -402,7 +402,7 @@ def run_once(config, software_path,
   # XXX: extends_cache or downloads shall not be created manually
   #      buildout might be extended to provide such functionality
   for d in [software_path, extends_cache, downloads]:
-    if not.os.path.isdir(d):
+    if not os.path.isdir(d):
       od.mkdir(d)
   try:
     try:



More information about the Erp5-report mailing list