You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. lookup any url through the proxy in the form of https://host:port/etc
modify the following code in http.py ( getHost() )
from
if port is None and r.scheme != "https":
port = 80
else:
port = 443
to
if port is None and r.scheme != "https":
port = 80
elif port is None and r.scheme == "https":
port = 443
Original issue reported on code.google.com by [email protected] on 29 Jan 2014 at 3:25
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 29 Jan 2014 at 3:25The text was updated successfully, but these errors were encountered: