Commit 7115cb1f by Casey Fitzpatrick

removed port from domain name qualification, fixes 7941

parent 746f52c5
......@@ -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