upgrade wakatime package to v2.1.6 to fix list index error when detecting subversion project. fixes #28.

This commit is contained in:
Alan Hamlett 2014-11-18 16:00:10 -08:00
parent 7245cbeb58
commit b1d344cb46
3 changed files with 19 additions and 3 deletions

View file

@ -3,6 +3,18 @@ History
-------
2.1.6 (2014-11-18)
++++++++++++++++++
- fix list index error when detecting subversion project
2.1.5 (2014-11-17)
++++++++++++++++++
- catch exceptions when getting current machine time zone
2.1.4 (2014-11-12)
++++++++++++++++++

View file

@ -13,7 +13,7 @@
from __future__ import print_function
__title__ = 'wakatime'
__version__ = '2.1.4'
__version__ = '2.1.6'
__author__ = 'Alan Hamlett'
__license__ = 'BSD'
__copyright__ = 'Copyright 2014 Alan Hamlett'
@ -287,7 +287,10 @@ def send_action(project=None, branch=None, stats=None, key=None, targetFile=None
request.add_header('Authorization', auth)
# add Olson timezone to request
tz = tzlocal.get_localzone()
try:
tz = tzlocal.get_localzone()
except:
tz = None
if tz:
request.add_header('TimeZone', u(tz.zone))

View file

@ -72,7 +72,8 @@ class Subversion(BaseProject):
if isinstance(line, bytes):
line = bytes.decode(line)
line = line.split(': ', 1)
info[line[0]] = line[1]
if len(line) == 2:
info[line[0]] = line[1]
return info
def _find_project_base(self, path, found=False):