From a31d7c48b028ec4c4b650b33b540bbe987d28a1d Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 31 May 2014 10:50:29 -0700 Subject: [PATCH] Removed an unused import --- 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