Allow the use of HTTP on custom ports in the fetch_url function

This commit is contained in:
Simon Dick 2015-05-01 13:52:29 +01:00 committed by Toshio Kuratomi
parent 54fb04afc4
commit c0265f80fb

View file

@ -377,6 +377,7 @@ def fetch_url(module, url, data=None, headers=None, method=None,
netloc = netloc.split('@', 1)[1]
if ':' in netloc:
hostname, port = netloc.split(':', 1)
port = int(port)
else:
hostname = netloc
port = 443