mirror of
https://github.com/sprockets/sprockets-influxdb.git
synced 2024-11-14 19:29:29 +00:00
Remove the import for ietfparse
This commit is contained in:
parent
815949458b
commit
f4245531b7
1 changed files with 1 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue