updated wakatime.py package

This commit is contained in:
Alan Hamlett
2013-07-10 01:34:26 -07:00
parent 0961389f0d
commit 9a4064a3c3
2 changed files with 4 additions and 3 deletions

View File

@ -58,8 +58,9 @@ class Git(BaseProject):
stdout = None
try:
stdout, stderr = Popen([
'git', 'branch', '--no-color', '--list'
], stdout=PIPE, cwd=self._project_base()).communicate()
'git', 'branch', '--no-color', '--list'
], stdout=PIPE, stderr=PIPE, cwd=self._project_base()
).communicate()
except OSError:
pass
if stdout: