From 160fd6c7c1699e0be89d9a48f4cc9386bab0e9de Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 31 May 2014 10:50:29 -0700 Subject: [PATCH] [1.7.x] Removed an unused import Backport of a31d7c48b0 from master --- tests/commands_sql_migrations/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands_sql_migrations/tests.py b/tests/commands_sql_migrations/tests.py index 9d914c0149c..e0fb3559cd3 100644 --- a/tests/commands_sql_migrations/tests.py +++ b/tests/commands_sql_migrations/tests.py @@ -5,7 +5,7 @@ from django.core.management import CommandError from django.core.management.color import no_style from django.core.management.sql import (sql_create, sql_delete, sql_indexes, sql_destroy_indexes, sql_all) -from django.db import connections, DEFAULT_DB_ALIAS, router +from django.db import connections, DEFAULT_DB_ALIAS from django.test import TestCase