1
0
mirror of https://github.com/django/django.git synced 2024-12-23 01:25:58 +00:00

Removed unused import.

This commit is contained in:
Tim Graham 2015-03-20 13:31:49 -04:00
parent 7bf775258e
commit 4a5d967dfe

View File

@ -1,11 +1,9 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals from __future__ import unicode_literals
from django.core import mail from django.core import mail
from django.core.management import call_command from django.core.management import call_command
from django.core.management.base import CommandError from django.core.management.base import CommandError
from django.test import SimpleTestCase from django.test import SimpleTestCase
from django.utils.six import StringIO
class SendTestEmailManagementCommand(SimpleTestCase): class SendTestEmailManagementCommand(SimpleTestCase):