upgrade external wakatime-cli package to v2.1.2

This commit is contained in:
Alan Hamlett 2014-11-03 22:51:05 -08:00
parent 631c61ea1c
commit ca4b59d29a
3 changed files with 9 additions and 4 deletions

View File

@ -3,6 +3,12 @@ History
------- -------
2.1.2 (2014-10-07)
++++++++++++++++++
- still log heartbeat when something goes wrong while reading num lines in file
2.1.1 (2014-09-30) 2.1.1 (2014-09-30)
++++++++++++++++++ ++++++++++++++++++

View File

@ -13,7 +13,7 @@
from __future__ import print_function from __future__ import print_function
__title__ = 'wakatime' __title__ = 'wakatime'
__version__ = '2.1.1' __version__ = '2.1.2'
__author__ = 'Alan Hamlett' __author__ = 'Alan Hamlett'
__license__ = 'BSD' __license__ = 'BSD'
__copyright__ = 'Copyright 2014 Alan Hamlett' __copyright__ = 'Copyright 2014 Alan Hamlett'
@ -122,8 +122,7 @@ def parseConfigFile(configFile):
print(traceback.format_exc()) print(traceback.format_exc())
return None return None
except IOError: except IOError:
if not os.path.isfile(configFile): print(u('Error: Could not read from config file {0}').format(configFile))
print('Error: Could not read from config file ~/.wakatime.cfg')
return configs return configs

View File

@ -82,7 +82,7 @@ def number_lines_in_file(file_name):
with open(file_name, 'r', encoding='utf-8') as fh: with open(file_name, 'r', encoding='utf-8') as fh:
for line in fh: for line in fh:
lines += 1 lines += 1
except IOError: except:
return None return None
return lines return lines