[Zope-Checkins] CVS: ZODB3/BDBStorage/tests - BerkeleyTestBase.py:1.15

Barry Warsaw barry@wooz.org
Tue, 28 Jan 2003 11:46:11 -0500


Update of /cvs-repository/ZODB3/BDBStorage/tests
In directory cvs.zope.org:/tmp/cvs-serv21887

Modified Files:
	BerkeleyTestBase.py 
Log Message:
_zap_dbhome(): There's no `True' in Python 2.1


=== ZODB3/BDBStorage/tests/BerkeleyTestBase.py 1.14 => 1.15 ===
--- ZODB3/BDBStorage/tests/BerkeleyTestBase.py:1.14	Mon Jan 27 16:13:09 2003
+++ ZODB3/BDBStorage/tests/BerkeleyTestBase.py	Tue Jan 28 11:46:08 2003
@@ -48,7 +48,7 @@
         # XXX Pre-Python 2.3 doesn't ignore errors if the first arg doesn't
         # exist, even if the second is True.
         try:
-            shutil.rmtree(dir, True)
+            shutil.rmtree(dir, 1)
         except OSError, e:
             if e.errno <> errno.ENOENT: raise