2020-07-19 00:13:49 +02:00
|
|
|
#!/usr/bin/env python
|
2020-07-31 14:55:26 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2020-07-19 00:13:49 +02:00
|
|
|
"""Django's command-line utility for administrative tasks."""
|
2020-07-31 14:55:26 +02:00
|
|
|
|
2020-07-19 00:13:49 +02:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
def main():
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'lostplaces.settings')
|
|
|
|
try:
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
except ImportError as exc:
|
|
|
|
raise ImportError(
|
|
|
|
"Couldn't import Django. Are you sure it's installed and "
|
|
|
|
"available on your PYTHONPATH environment variable? Did you "
|
|
|
|
"forget to activate a virtual environment?"
|
|
|
|
) from exc
|
|
|
|
execute_from_command_line(sys.argv)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|