[Python-checkins] r65373 - doctools/branches/0.4.x/tests/util.py
georg.brandl
python-checkins at python.org
Fri Aug 1 21:28:34 CEST 2008
Author: georg.brandl
Date: Fri Aug 1 21:28:33 2008
New Revision: 65373
Log:
Fix oversight.
Modified:
doctools/branches/0.4.x/tests/util.py
Modified: doctools/branches/0.4.x/tests/util.py
==============================================================================
--- doctools/branches/0.4.x/tests/util.py (original)
+++ doctools/branches/0.4.x/tests/util.py Fri Aug 1 21:28:33 2008
@@ -130,10 +130,10 @@
def cleanup(self):
trees = [self.outdir, self.doctreedir]
- #if self.made_builddir:
- # trees.append(self.builddir)
- #for tree in trees:
- # shutil.rmtree(tree, True)
+ if self.made_builddir:
+ trees.append(self.builddir)
+ for tree in trees:
+ shutil.rmtree(tree, True)
def with_testapp(*args, **kwargs):
More information about the Python-checkins
mailing list