Closed GoogleCodeExporter closed 9 years ago
And the fix is ... (drum roll):
diff http.py.orig http.py
231,234c231,235
< if port is None and r.scheme != "https":
< port = 80
< else:
< port = 443
---
> if port is None:
> if r.scheme != "https":
> port = 80
> else:
> port = 443
Original comment by Henry.Gr...@gmail.com
on 4 Feb 2013 at 1:46
Original comment by roberto.paleari@gmail.com
on 18 Nov 2013 at 1:09
Original issue reported on code.google.com by
Henry.Gr...@gmail.com
on 4 Feb 2013 at 1:02