missing str in http.parse_url

This commit is contained in:
Marcelo Glezer
2015-02-11 22:03:57 -03:00
parent 493cecfaf2
commit 27a1947599

View File

@@ -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: