mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
python2.4 compatibility issue with urlparse
This commit is contained in:
parent
617352a38e
commit
10113e6a67
1 changed files with 4 additions and 2 deletions
|
@ -72,6 +72,8 @@ def get_fqdn(repo_url):
|
|||
if 'ssh' not in parts[0] and 'git' not in parts[0]:
|
||||
# don't try and scan a hostname that's not ssh
|
||||
return None
|
||||
# parts[1] will be empty on python2.4 on ssh:// or git:// urls, so
|
||||
# ensure we actually have a parts[1] before continuing.
|
||||
if parts[1] != '':
|
||||
result = parts[1]
|
||||
if ":" in result:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue