Commit c26579ea authored by Tim Graham's avatar Tim Graham
Browse files

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.
parent 71461b14
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
"""
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")