remove 'except as' for python 2.5 compat

This commit is contained in:
Alexis Metaireau 2011-02-18 13:34:26 +00:00
commit 7b4d5e8317

View file

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