diff options
| author | Tim Graham <timograham@gmail.com> | 2014-07-01 08:51:06 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-07-01 08:51:06 -0400 |
| commit | c26579eaa76a465fbe8a18205fd756a377f7a4da (patch) | |
| tree | e8ef778fb30eb77533c75e87b8156f0ccee7d06d | |
| parent | 71461b14ab0c5a3801d85738fde3aedd407d7115 (diff) | |
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.
| -rw-r--r-- | django/contrib/auth/create_superuser.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/django/contrib/auth/create_superuser.py b/django/contrib/auth/create_superuser.py deleted file mode 100644 index 7b58678b78..0000000000 --- a/django/contrib/auth/create_superuser.py +++ /dev/null @@ -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") |
