upgrade wakatime package to v0.5.2

This commit is contained in:
Alan Hamlett 2014-01-14 05:09:54 -08:00
parent 34eac379f6
commit f2cb08a325
5 changed files with 14 additions and 7 deletions

View File

@ -12,3 +12,4 @@ Patches and Suggestions
-----------------------
- 3onyc <3onyc@x3tech.com>
- userid <xixico@ymail.com>

View File

@ -3,6 +3,12 @@ History
-------
0.5.2 (2014-01-14)
++++++++++++++++++
- minor bug fix for Subversion on non-English systems
0.5.1 (2013-12-13)
++++++++++++++++++

View File

@ -1,9 +1,9 @@
WakaTime
========
Automatic time tracking for your text editor.
Fully automatic time tracking for your text editor.
This is the common interface for the WakaTime api. You shouldn't need to directly use this package.
This is the common interface for the WakaTime api. You shouldn't need to directly use this package unless you are creating a new plugin.
Go to http://wakatime.com to install the plugin for your text editor.

View File

@ -3,9 +3,8 @@
wakatime
~~~~~~~~
Common interface to WakaTime.com for most text editor plugins.
WakaTime.com is fully automatic time tracking for text editors.
More info at http://wakatime.com
Common interface to the WakaTime api.
http://wakatime.com
:copyright: (c) 2013 Alan Hamlett.
:license: BSD, see LICENSE for more details.
@ -14,7 +13,7 @@
from __future__ import print_function
__title__ = 'wakatime'
__version__ = '0.5.1'
__version__ = '0.5.2'
__author__ = 'Alan Hamlett'
__license__ = 'BSD'
__copyright__ = 'Copyright 2013 Alan Hamlett'
@ -135,7 +134,7 @@ def parseArguments(argv):
# define supported command line arguments
parser = argparse.ArgumentParser(
description='Wakati.Me event api appender')
description='Common interface for the WakaTime api.')
parser.add_argument('--file', dest='targetFile', metavar='file',
action=FileAction, required=True,
help='absolute path to file for current action')

View File

@ -41,6 +41,7 @@ class Subversion(BaseProject):
info = OrderedDict()
stdout = None
try:
os.environ['LANG'] = 'en_US'
stdout, stderr = Popen([
'svn', 'info', os.path.realpath(path)
], stdout=PIPE, stderr=PIPE).communicate()