Remove the import for ietfparse

This commit is contained in:
Gavin M. Roy 2016-09-14 00:48:29 -04:00
parent 815949458b
commit f4245531b7

View file

@ -12,11 +12,10 @@ import socket
import time
try:
from ietfparse import headers
from tornado import concurrent, httpclient, ioloop
except ImportError: # pragma: no cover
logging.critical('Could not import Tornado')
headers, concurrent, httpclient, ioloop = None, None, None, None
concurrent, httpclient, ioloop = None, None, None
version_info = (1, 0, 5)
__version__ = '.'.join(str(v) for v in version_info)