5 if __name__
== "__main__":
6 os
.environ
.setdefault("DJANGO_SETTINGS_MODULE", "hespul.settings")
8 from django
.core
.management
import execute_from_command_line
10 # The above import may fail for some other reason. Ensure that the
11 # issue is really that Django is missing to avoid masking other
12 # exceptions on Python 2.
17 "Couldn't import Django. Are you sure it's installed and "
18 "available on your PYTHONPATH environment variable? Did you "
19 "forget to activate a virtual environment?"
22 execute_from_command_line(sys
.argv
)