diff options
| author | Tim Graham <timograham@gmail.com> | 2017-12-06 17:17:59 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-06 17:17:59 -0500 |
| commit | a862af383969ade774f6b0fa1d331bc87b188b89 (patch) | |
| tree | 57a264753921cb1ac689efeb9b78dd43fcdd1db0 /django/test | |
| parent | 183fb7b2b9778f7d7cc91f5a7e5afec61b85179e (diff) | |
Fixed #28893 -- Removed unnecessary dict.items() calls.
Diffstat (limited to 'django/test')
| -rw-r--r-- | django/test/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/utils.py b/django/test/utils.py index fc783a4fc8..0cec1a2309 100644 --- a/django/test/utils.py +++ b/django/test/utils.py @@ -160,7 +160,7 @@ def setup_databases(verbosity, interactive, keepdb=False, debug_sql=False, paral old_names = [] - for signature, (db_name, aliases) in test_databases.items(): + for db_name, aliases in test_databases.values(): first_alias = None for alias in aliases: connection = connections[alias] |
