app/django/contrib/auth/create_superuser.py
author Lennard de Rijk <ljvderijk@gmail.com>
Mon, 25 May 2009 23:45:20 +0200
changeset 2348 0edff67b472d
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Fixed model name and comment typo's in task model. Also changed the corresponding reference properties.

"""
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")