[Zodb-checkins] CVS: ZODB3/BDBStorage/tests - BerkeleyTestBase.py:1.7.4.3
Barry Warsaw
barry@wooz.org
Tue, 28 Jan 2003 11:45:51 -0500
Update of /cvs-repository/ZODB3/BDBStorage/tests
In directory cvs.zope.org:/tmp/cvs-serv21793
Modified Files:
Tag: ZODB3-3_1-branch
BerkeleyTestBase.py
Log Message:
_zap_dbhome(): There's no `True' in Python 2.1
=== ZODB3/BDBStorage/tests/BerkeleyTestBase.py 1.7.4.2 => 1.7.4.3 ===
--- ZODB3/BDBStorage/tests/BerkeleyTestBase.py:1.7.4.2 Mon Jan 27 18:19:02 2003
+++ ZODB3/BDBStorage/tests/BerkeleyTestBase.py Tue Jan 28 11:45:47 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