app/django/contrib/auth/create_superuser.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Tue, 14 Oct 2008 22:35:46 +0000
changeset 331 24edc648ad3f
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Add deleted in r732 (don't know why) functionality that displays custom Error page when linkname in Developer User Profile url doesn't exist (/site/user/profile/<not_existing_linkname>). Patch by: Pawel Solyga Review by: to-be-reviewed

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