fix warning in clean.py

This commit is contained in:
arvidn 2018-10-26 00:47:23 +02:00 committed by Arvid Norberg
parent b00ce69d58
commit a3eed212a1
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ def clean():
try: try:
shutil.rmtree(p) shutil.rmtree(p)
print(p) print(p)
except Exception as e: except Exception:
try: try:
os.remove(p) os.remove(p)
print(p) print(p)