app/django/contrib/auth/create_superuser.py
author Sverre Rabbelier <sverre@rabbelier.nl>
Fri, 05 Jun 2009 00:03:09 +0200
changeset 2395 fa81f021773c
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Added tag v0-5-20090604 for changeset 1dc8d7f9458e

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