server/manage.py
author rougeronj
Fri, 22 May 2015 12:37:37 +0200
changeset 90 faf2cdb47813
parent 12 1ada9d221ba3
permissions -rwxr-xr-x
remove "comment" from the model. Copy the 'comment' field of Jamespot in the 'description' field of the model instead

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

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

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)