removed port from domain name qualification, fixes 7941

pull/8024/head
Casey Fitzpatrick 10 years ago
parent 746f52c5aa
commit 7115cb1f37

@ -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]

Loading…
Cancel
Save