Merge pull request #6 from jaspertandy/master

Fixed string errors for unexpected repo formats
This commit is contained in:
Alan Hamlett 2013-07-22 13:40:51 -07:00
commit beff444233
1 changed files with 5 additions and 1 deletions

View File

@ -43,7 +43,11 @@ class Git(BaseProject):
sections = self._parse_config()
for section in sections:
if section.split(' ', 1)[0] == 'remote' and 'url' in sections[section]:
remote = sections[section]['url'].rsplit(':', 1)[1].rsplit('/', 1)[1].split('.git', 1)[0]
remote = sections[section]['url'].rsplit(':', 1)[1]
try:
remote = remote.rsplit('/' , 1)[1].split('.git' , 1)[0]
except:
pass
tags.append(remote)
branch = self._current_branch()
if branch is not None: