summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-05-31 10:50:29 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-05-31 10:50:29 -0700
commita31d7c48b028ec4c4b650b33b540bbe987d28a1d (patch)
tree12550820b734a3b235e9337f110e53c86cb8cb28
parentc4c2c99669ef9d58306856c47058b121bbecfe5f (diff)
Removed an unused import
-rw-r--r--tests/commands_sql_migrations/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/commands_sql_migrations/tests.py b/tests/commands_sql_migrations/tests.py
index 9d914c0149..e0fb3559cd 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