summaryrefslogtreecommitdiffstats
path: root/webapp/django/contrib/auth/create_superuser.py
blob: 7b58678b7835b83f7022d9246f05383faf8b0fe8 (plain)
1
2
3
4
5
6
7
8
"""
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")