[Checkins] SVN: ZODB/trunk/buildout.cfg Fixed a problem in temp file cleanup.

Jim Fulton jim at zope.com
Sat Oct 18 13:34:22 EDT 2008


Log message for revision 92359:
  Fixed a problem in temp file cleanup.
  

Changed:
  U   ZODB/trunk/buildout.cfg

-=-
Modified: ZODB/trunk/buildout.cfg
===================================================================
--- ZODB/trunk/buildout.cfg	2008-10-18 17:18:10 UTC (rev 92358)
+++ ZODB/trunk/buildout.cfg	2008-10-18 17:34:22 UTC (rev 92359)
@@ -9,7 +9,7 @@
 initialization = 
   import os, tempfile, shutil, stat
   [[os.chmod(os.path.join(path, f), stat.S_IWUSR) for f in files]
-    for (path, dirs, files) in os.walk(os.getcwd())]
+    for (path, dirs, files) in os.walk('tmp')]
   if os.path.exists('tmp'): shutil.rmtree('tmp')
   os.mkdir('tmp')
   tempfile.tempdir = os.path.abspath('tmp')



More information about the Checkins mailing list