Improved handling of role_version in repo_url_to_role_name

This commit is contained in:
Will Thames 2014-08-14 20:48:25 +10:00 committed by Michael DeHaan
commit 4803e923ff
2 changed files with 4 additions and 1 deletions

View file

@ -356,6 +356,8 @@ def repo_url_to_role_name(repo_url):
trailing_path = repo_url.split('/')[-1]
if trailing_path.endswith('.git'):
trailing_path = trailing_path[:-4]
if ',' in trailing_path:
trailing_path = trailing_path.split(',')[0]
return trailing_path
def json_loads(data):