upgraded wakatime module from wakatime/wakatime

This commit is contained in:
Alan Hamlett 2013-07-22 17:29:15 -07:00
parent b8b41fc870
commit ecc08f0d2d
1 changed files with 3 additions and 2 deletions

View File

@ -43,8 +43,9 @@ 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]
tags.append(remote)
remote = sections[section]['url'].rsplit(':', 1)[-1].rsplit('/', 1)[-1].split('.git', 1)[0]
if remote:
tags.append(remote)
branch = self._current_branch()
if branch is not None:
tags.append(branch)