From a673ec80e21447b9833c744293cd5c60bfcce2ff Mon Sep 17 00:00:00 2001 From: James Bennett Date: Wed, 14 Mar 2012 22:23:35 +0000 Subject: [PATCH] Fixed #17898: Ensure create_superuser honors the 'db' argument from post_sync_db. Thanks to charettes for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17738 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/auth/management/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/contrib/auth/management/__init__.py b/django/contrib/auth/management/__init__.py index 78a51cf443..e792597778 100644 --- a/django/contrib/auth/management/__init__.py +++ b/django/contrib/auth/management/__init__.py @@ -57,7 +57,7 @@ def create_permissions(app, created_models, verbosity, **kwargs): print "Adding permission '%s'" % obj -def create_superuser(app, created_models, verbosity, **kwargs): +def create_superuser(app, created_models, verbosity, db, **kwargs): from django.core.management import call_command if auth_app.User in created_models and kwargs.get('interactive', True): @@ -70,7 +70,7 @@ def create_superuser(app, created_models, verbosity, **kwargs): confirm = raw_input('Please enter either "yes" or "no": ') continue if confirm == 'yes': - call_command("createsuperuser", interactive=True) + call_command("createsuperuser", interactive=True, database=db) break