diff options
author | Marcelo Glezer <marcelo.glezer@gmail.com> | 2015-02-11 22:03:57 -0300 |
---|---|---|
committer | Marcelo Glezer <marcelo.glezer@gmail.com> | 2015-02-11 22:03:57 -0300 |
commit | 27a1947599f33e7c57c185231f7e623a8b2d4dee (patch) | |
tree | 09e38c6a4c365b7da1b849a3b66dc15b5621f31d /libmproxy | |
parent | 493cecfaf27f7680c8acaaa88a467fc016a00bf8 (diff) | |
download | mitmproxy-27a1947599f33e7c57c185231f7e623a8b2d4dee.tar.gz mitmproxy-27a1947599f33e7c57c185231f7e623a8b2d4dee.tar.bz2 mitmproxy-27a1947599f33e7c57c185231f7e623a8b2d4dee.zip |
missing str in http.parse_url
Diffstat (limited to 'libmproxy')
-rw-r--r-- | libmproxy/console/flowlist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/console/flowlist.py b/libmproxy/console/flowlist.py index 7d511682..92d58d11 100644 --- a/libmproxy/console/flowlist.py +++ b/libmproxy/console/flowlist.py @@ -266,7 +266,7 @@ class FlowListBox(urwid.ListBox): def new_request(self, url, method): try: - scheme, host, port, path = http.parse_url(url) + scheme, host, port, path = http.parse_url(str(url)) f = self.master.create_request(method, scheme, host, port, path) self.master.view_flow(f) except ValueError: |