mirror of
https://github.com/wakatime/sublime-wakatime.git
synced 2023-08-10 21:13:02 +03:00
upgrade external wakatime package to v2.1.2
This commit is contained in:
parent
b7c047102d
commit
cbd92a69b3
@ -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)
|
||||||
++++++++++++++++++
|
++++++++++++++++++
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user