From 4a5d967dfeb930ae47bbd0d507c462ac132c284f Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 20 Mar 2015 13:31:49 -0400 Subject: [PATCH] Removed unused import. --- tests/mail/test_sendtestemail.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/mail/test_sendtestemail.py b/tests/mail/test_sendtestemail.py index cb7737e9ff..5fff7c8809 100644 --- a/tests/mail/test_sendtestemail.py +++ b/tests/mail/test_sendtestemail.py @@ -1,11 +1,9 @@ -# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.core import mail from django.core.management import call_command from django.core.management.base import CommandError from django.test import SimpleTestCase -from django.utils.six import StringIO class SendTestEmailManagementCommand(SimpleTestCase):