1
0
mirror of https://github.com/django/django.git synced 2025-03-05 23:12:32 +00:00

Removed django/contrib/auth/create_superuser.py

It's a shim that calls the actual createsuperuser management command and
it's been marked as deprecated since Django 1.0.
This commit is contained in:
Tim Graham 2014-07-01 08:51:06 -04:00
parent 71461b14ab
commit c26579eaa7

View File

@ -1,8 +0,0 @@
"""
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")