src/manage.py
author cavaliet
Tue, 17 Jun 2014 10:25:33 +0200
changeset 271 8f77cf71ab02
child 359 46ad324f6fe4
permissions -rw-r--r--
commit the venv update (django and dependancies) in the good head

#!/usr/bin/env python
import os
import sys

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "hdabo.settings")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)