Commit 7f8de3a2 by James Cammarata

Merge pull request #8024 from kcghost/7941

removed port from domain name qualification, fixes #7941
parents ff04b2b5 7115cb1f
......@@ -74,6 +74,8 @@ def get_fqdn(repo_url):
return None
if parts[1] != '':
result = parts[1]
if ":" in result:
result = result.split(":")[0]
if "@" in result:
result = result.split("@", 1)[1]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment