diff options
Diffstat (limited to 'reset-django.py')
-rw-r--r-- | reset-django.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/reset-django.py b/reset-django.py index c847fa4..d822d07 100644 --- a/reset-django.py +++ b/reset-django.py @@ -1,6 +1,5 @@ import os
import shutil
-from pprint import pprint
"""Cleans all django-created files and compiled python. Used by the
pre-run.sh script which cleans and initialises everything before
@@ -79,7 +78,7 @@ def main(): delete_sqlite3()
print("All cleanup operations performed successfully.")
- except Exception as e:
+ except Exception:
print("There was some error! Aaargh. \n")
raise
|