src/manage.py
author grandjoncl
Fri, 08 Feb 2013 18:00:04 +0100
changeset 1 5a91860c5535
permissions -rw-r--r--
first commit of polemictweet

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

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

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)