diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-07-15 22:04:25 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-07-22 15:30:33 +0200 |
commit | 2b0465dbb93dd4bf0d6db366db597c05e92121d8 (patch) | |
tree | 5bbb540800a154e840334b2c2141581ecb03de26 /libpathod/pathod.py | |
parent | a2bf19125a92a4fa372708cf2cda7887ab62ac76 (diff) | |
download | mitmproxy-2b0465dbb93dd4bf0d6db366db597c05e92121d8.tar.gz mitmproxy-2b0465dbb93dd4bf0d6db366db597c05e92121d8.tar.bz2 mitmproxy-2b0465dbb93dd4bf0d6db366db597c05e92121d8.zip |
use new netlib module names
Diffstat (limited to 'libpathod/pathod.py')
-rw-r--r-- | libpathod/pathod.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libpathod/pathod.py b/libpathod/pathod.py index 31d821c2..cfedc934 100644 --- a/libpathod/pathod.py +++ b/libpathod/pathod.py @@ -6,7 +6,8 @@ import threading import urllib import time -from netlib import tcp, http, http2, wsgi, certutils, websockets, odict +from netlib import tcp, http, wsgi, certutils, websockets, odict +from netlib.http import http1, http2 from . import version, app, language, utils, log, protocols import language.http |