upgrade wakatime-cli to v10.4.2

This commit is contained in:
Alan Hamlett 2018-11-19 23:13:05 -08:00
parent 656853504f
commit 7886edcb7a
3 changed files with 4 additions and 4 deletions

View file

@ -87,10 +87,10 @@ class Git(BaseProject):
disabled = self._configs.get('submodules_disabled')
if not disabled or disabled.strip().lower() == 'false':
return True
if disabled.strip().lower() == 'true':
return False
if disabled.strip().lower() == 'false':
return True
for pattern in disabled.split("\n"):
if pattern.strip():