src/manage.py
author Nicolas Sauret <nicolas.sauret@iri.centrepompidou.fr>
Tue, 08 Jul 2014 12:37:18 +0200
changeset 110 3102b98de42c
parent 2 bafbf72652b9
permissions -rwxr-xr-x
access to new videos (theatre)

#!/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)