app/django/contrib/auth/create_superuser.py
author Lennard de Rijk <ljvderijk@gmail.com>
Tue, 10 Mar 2009 19:09:12 +0000
changeset 1787 b623d96bc830
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Organization admins can now put a Student Proposal at a specific rank. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

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