app/django/contrib/auth/create_superuser.py
author Mario Ferraro <fadinlight@gmail.com>
Fri, 19 Jun 2009 23:13:06 +0100
changeset 2415 69e9d5cc643f
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
jQuery Spin plugin updated to version 1.1.1 Former version had a bug if max was not specified

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