Commit 332d301f authored by Barry Warsaw's avatar Barry Warsaw

_zap_dbhome(): There's no `True' in Python 2.1

parent a07e70f1
......@@ -48,7 +48,7 @@ class BerkeleyTestBase(StorageTestBase):
# 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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment