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
1 changed files with 0 additions and 8 deletions

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