diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-05-31 18:42:56 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-05-31 18:42:56 +1200 |
commit | 4e6c9c4e935458d23add259dc63c5e0a85fba9c8 (patch) | |
tree | 54421713fc65e0e8e8af3f6428b56d6ef096ff40 /netlib/http/http2 | |
parent | 08fbe6f1118455bc44d05db30b83bdf81feda2a0 (diff) | |
download | mitmproxy-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.py | 4 |
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') |