From 0657646cb81d8742eec59dcd325baa519bb3c63f Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Fri, 1 Mar 2013 22:52:08 +0100 Subject: [PATCH] Removed unused options copy in flush This was used at the time the 'database' option did not default to DEFAULT_DB_ALIAS in make_option. --- django/core/management/commands/flush.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/django/core/management/commands/flush.py b/django/core/management/commands/flush.py index b8b78434ce..3bf1e9c672 100644 --- a/django/core/management/commands/flush.py +++ b/django/core/management/commands/flush.py @@ -82,8 +82,6 @@ The full error: %s""" % (connection.settings_dict['NAME'], e)) emit_post_sync_signal(set(all_models), verbosity, interactive, db) # Reinstall the initial_data fixture. - kwargs = options.copy() - kwargs['database'] = db if options.get('load_initial_data'): # Reinstall the initial_data fixture. call_command('loaddata', 'initial_data', **options)