app/django/contrib/auth/create_superuser.py
author Sverre Rabbelier <srabbelier@gmail.com>
Tue, 25 Nov 2008 23:16:32 +0000
changeset 587 7504504209a3
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Fixed some access related bugs These were not obvious previously, but with the sidebar not showing up when one does not have access, they stood out.

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