diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2008-06-08 08:45:14 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2008-06-08 08:45:14 +0000 |
| commit | 8398ea660373e00c8119c6a5a310c04ea7f0e680 (patch) | |
| tree | d05521039298c561841a7222b61e213aca78ca96 | |
| parent | 511e01d9787e4936788644a5f9aeb0c84eaa6ea4 (diff) | |
Fixed #7392 -- Corrected a typo in the backwards-compatibility layer to the new createsuperuser command.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7596 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/auth/create_superuser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/create_superuser.py b/django/contrib/auth/create_superuser.py index 8d13a7916a..7b58678b78 100644 --- a/django/contrib/auth/create_superuser.py +++ b/django/contrib/auth/create_superuser.py @@ -5,4 +5,4 @@ createsuperuser instead. if __name__ == "__main__": from django.core.management import call_command - call_command("createuseruser") + call_command("createsuperuser") |
