app/django/contrib/auth/create_superuser.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Fri, 05 Dec 2008 22:25:08 +0000
changeset 665 ce9f11f7c4cf
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Fix import sorting in soc.views.sitemap.build module. Patch by: Pawel Solyga

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