[Zope3-checkins] CVS: Zope3/src/zodb/storage/tests - base.py:1.7
Jeremy Hylton
jeremy@zope.com
Tue, 25 Feb 2003 17:30:18 -0500
Update of /cvs-repository/Zope3/src/zodb/storage/tests
In directory cvs.zope.org:/tmp/cvs-serv18941
Modified Files:
base.py
Log Message:
Don't suppress errors.
=== Zope3/src/zodb/storage/tests/base.py 1.6 => 1.7 ===
--- Zope3/src/zodb/storage/tests/base.py:1.6 Wed Feb 5 18:28:27 2003
+++ Zope3/src/zodb/storage/tests/base.py Tue Feb 25 17:30:18 2003
@@ -216,7 +216,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)
except OSError, e:
if e.errno <> errno.ENOENT: raise