mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
porting fix #10893 to v2
This commit is contained in:
parent
0951a74ea0
commit
2f1b561bd3
1 changed files with 1 additions and 0 deletions
|
@ -377,6 +377,7 @@ def fetch_url(module, url, data=None, headers=None, method=None,
|
||||||
netloc = netloc.split('@', 1)[1]
|
netloc = netloc.split('@', 1)[1]
|
||||||
if ':' in netloc:
|
if ':' in netloc:
|
||||||
hostname, port = netloc.split(':', 1)
|
hostname, port = netloc.split(':', 1)
|
||||||
|
port = int(port)
|
||||||
else:
|
else:
|
||||||
hostname = netloc
|
hostname = netloc
|
||||||
port = 443
|
port = 443
|
||||||
|
|
Loading…
Reference in a new issue