changeset 2:a85cbad8dadb

Uncomment shutil.rmtree in TempDir...
author Louis Opter <louis.opter@dotcloud.com>
date Thu, 25 Mar 2010 18:51:20 +0100
parents b6cf3e38343e
children 3a06b35bd591
files doxyhook.py
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/doxyhook.py	Thu Mar 25 18:42:46 2010 +0100
+++ b/doxyhook.py	Thu Mar 25 18:51:20 2010 +0100
@@ -48,8 +48,7 @@
         return self.__path
 
     def __exit__(self, exc_type, exc_value, traceback):
-        pass
-#shutil.rmtree(self.__path)
+        shutil.rmtree(self.__path)
 
 def clone_repo(ui, source, dest):
     """Clone repo at directory source to directory dest"""