From 8398ea660373e00c8119c6a5a310c04ea7f0e680 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sun, 8 Jun 2008 08:45:14 +0000 Subject: [PATCH] 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 --- django/contrib/auth/create_superuser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")