app/django/contrib/auth/create_superuser.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sat, 03 Oct 2009 21:49:08 +0200
changeset 3003 6a84c1ff5b5c
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
GHOP Comments do not need to be created by a User. We also have "system" messages.

"""
Create a superuser from the command line. Deprecated; use manage.py
createsuperuser instead.
"""

if __name__ == "__main__":
    from django.core.management import call_command
    call_command("createsuperuser")