app/django/contrib/auth/create_superuser.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 04 Oct 2009 23:40:53 +0200
changeset 3011 1834d422d1dc
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Add Timeline conversion update

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