aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/http/http2
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2016-05-31 18:42:56 +1200
committerAldo Cortesi <aldo@nullcube.com>2016-05-31 18:42:56 +1200
commit4e6c9c4e935458d23add259dc63c5e0a85fba9c8 (patch)
tree54421713fc65e0e8e8af3f6428b56d6ef096ff40 /netlib/http/http2
parent08fbe6f1118455bc44d05db30b83bdf81feda2a0 (diff)
downloadmitmproxy-4e6c9c4e935458d23add259dc63c5e0a85fba9c8.tar.gz
mitmproxy-4e6c9c4e935458d23add259dc63c5e0a85fba9c8.tar.bz2
mitmproxy-4e6c9c4e935458d23add259dc63c5e0a85fba9c8.zip
Extract url functions from netlib.utils and move to netlib.http.url
Diffstat (limited to 'netlib/http/http2')
-rw-r--r--netlib/http/http2/connections.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/netlib/http/http2/connections.py b/netlib/http/http2/connections.py
index 03f1804b..4c15ee07 100644
--- a/netlib/http/http2/connections.py
+++ b/netlib/http/http2/connections.py
@@ -6,7 +6,7 @@ import hyperframe.frame
from hpack.hpack import Encoder, Decoder
from ... import utils
-from .. import Headers, Response, Request
+from .. import Headers, Response, Request, url
from . import frame
@@ -118,7 +118,7 @@ class HTTP2Protocol(object):
else:
first_line_format = "absolute"
# FIXME: verify if path or :host contains what we need
- scheme, host, port, _ = utils.parse_url(path)
+ scheme, host, port, _ = url.parse_url(path)
scheme = scheme.decode('ascii')
host = host.decode('ascii')