diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-07-18 16:23:54 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-07-18 16:23:54 +0100 |
commit | edd5a3efd901df68243372f46087d96d4fbf7715 (patch) | |
tree | 037682c9ad9a85c2de8532c5623bf750c12dee5b /reset-django.py | |
parent | 90dfa516da857f300bd0ff483ebf7a412934bbcf (diff) | |
download | troggle-edd5a3efd901df68243372f46087d96d4fbf7715.tar.gz troggle-edd5a3efd901df68243372f46087d96d4fbf7715.tar.bz2 troggle-edd5a3efd901df68243372f46087d96d4fbf7715.zip |
Module documentation docstrings
Diffstat (limited to 'reset-django.py')
-rw-r--r-- | reset-django.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/reset-django.py b/reset-django.py index 578506b..92af453 100644 --- a/reset-django.py +++ b/reset-django.py @@ -2,6 +2,14 @@ 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
+running:
+python databaseReset.py reset
+
+Downloaded (June 2020) from:
+https://groups.google.com/forum/#!topic/django-users/C8Q7CTpcChc
+"""
# from https://groups.google.com/forum/#!topic/django-users/C8Q7CTpcChc
# Just put it in the folder where manage.py file is and run it.
|