app/django/contrib/auth/create_superuser.py
author James Levy <jamesalexanderlevy@gmail.com>
Sun, 28 Jun 2009 13:18:56 +0200
changeset 2430 c9a5bf5ed3c5
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Added SurveyRecordGroup for the use in evaluation surveys. Patch by: James Levy, Daniel Diniz Reviewed by: Lennard de Rijk

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