[Erp5-report] r9632 - /erp5/trunk/utils/erp5mechanize/smartRun.py

nobody at svn.erp5.org nobody at svn.erp5.org
Mon Sep 4 13:26:27 CEST 2006


Author: vincent
Date: Mon Sep  4 13:26:24 2006
New Revision: 9632

URL: http://svn.erp5.org?rev=9632&view=rev
Log:
Fix NameError: name 'unlink' is not defined

Modified:
    erp5/trunk/utils/erp5mechanize/smartRun.py

Modified: erp5/trunk/utils/erp5mechanize/smartRun.py
URL: http://svn.erp5.org/erp5/trunk/utils/erp5mechanize/smartRun.py?rev=9632&r1=9631&r2=9632&view=diff
==============================================================================
--- erp5/trunk/utils/erp5mechanize/smartRun.py (original)
+++ erp5/trunk/utils/erp5mechanize/smartRun.py Mon Sep  4 13:26:24 2006
@@ -132,6 +132,6 @@
       break
     usercount = current_usercount
 
-unlink(resultpath)
-unlink(sresultpath)
+os.unlink(resultpath)
+os.unlink(sresultpath)
 




More information about the Erp5-report mailing list