removed port from domain name qualification, fixes 7941
This commit is contained in:
parent
746f52c5aa
commit
7115cb1f37
1 changed files with 2 additions and 0 deletions
|
@ -74,6 +74,8 @@ def get_fqdn(repo_url):
|
||||||
return None
|
return None
|
||||||
if parts[1] != '':
|
if parts[1] != '':
|
||||||
result = parts[1]
|
result = parts[1]
|
||||||
|
if ":" in result:
|
||||||
|
result = result.split(":")[0]
|
||||||
if "@" in result:
|
if "@" in result:
|
||||||
result = result.split("@", 1)[1]
|
result = result.split("@", 1)[1]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue