upgraded wakatime module from wakatime/wakatime
This commit is contained in:
parent
b8b41fc870
commit
ecc08f0d2d
1 changed files with 3 additions and 2 deletions
|
@ -43,7 +43,8 @@ class Git(BaseProject):
|
||||||
sections = self._parse_config()
|
sections = self._parse_config()
|
||||||
for section in sections:
|
for section in sections:
|
||||||
if section.split(' ', 1)[0] == 'remote' and 'url' in sections[section]:
|
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].rsplit('/', 1)[-1].split('.git', 1)[0]
|
||||||
|
if remote:
|
||||||
tags.append(remote)
|
tags.append(remote)
|
||||||
branch = self._current_branch()
|
branch = self._current_branch()
|
||||||
if branch is not None:
|
if branch is not None:
|
||||||
|
|
Loading…
Reference in a new issue