diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-08-10 20:36:47 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-08-10 20:36:47 +0200 |
commit | 476badf45cd085d69b6162cd48983e3cd22cefcc (patch) | |
tree | 0c7a52c4ae0d27b52bce0f93a8e244ed06dd91a1 /test/tservers.py | |
parent | 690b8b4f4e00d60b373b5a1481930f21bbc5054a (diff) | |
download | mitmproxy-476badf45cd085d69b6162cd48983e3cd22cefcc.tar.gz mitmproxy-476badf45cd085d69b6162cd48983e3cd22cefcc.tar.bz2 mitmproxy-476badf45cd085d69b6162cd48983e3cd22cefcc.zip |
cleanup imports
Diffstat (limited to 'test/tservers.py')
-rw-r--r-- | test/tservers.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/tservers.py b/test/tservers.py index 3f3ea8b4..682a9144 100644 --- a/test/tservers.py +++ b/test/tservers.py @@ -3,7 +3,8 @@ import threading import Queue import cStringIO import OpenSSL -from netlib import tcp, certutils, tutils +from netlib import tcp +from netlib import tutils class ServerThread(threading.Thread): |