stupidly replace rmtree by a pass, since we dont want to rmtree the output dir

This commit is contained in:
Ronny Pfannschmidt 2011-05-06 19:29:01 +02:00
commit b270c1bac4

View file

@ -62,7 +62,7 @@ def clean_output_dir(path):
# remove all the existing content from the output folder
try:
shutil.rmtree(path)
pass # WEEEEE dont kill
except Exception:
pass