src/manage.py
author Nicolas DURAND <nicolas.durand@iri.centrepompidou.fr>
Wed, 10 Sep 2014 16:32:53 +0200
changeset 134 d66eff309d8e
parent 2 bafbf72652b9
permissions -rwxr-xr-x
little update to correct branches

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

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

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)