upgrade external wakatime package to v2.0.8

This commit is contained in:
Alan Hamlett 2014-08-29 12:49:51 -07:00
parent 8574abe012
commit 49d9b1d7dc
3 changed files with 14 additions and 7 deletions

View File

@ -3,6 +3,12 @@ History
------- -------
2.0.8 (2014-08-29)
++++++++++++++++++
- supress output from svn command
2.0.7 (2014-08-27) 2.0.7 (2014-08-27)
++++++++++++++++++ ++++++++++++++++++

View File

@ -13,7 +13,7 @@
from __future__ import print_function from __future__ import print_function
__title__ = 'wakatime' __title__ = 'wakatime'
__version__ = '2.0.7' __version__ = '2.0.8'
__author__ = 'Alan Hamlett' __author__ = 'Alan Hamlett'
__license__ = 'BSD' __license__ = 'BSD'
__copyright__ = 'Copyright 2014 Alan Hamlett' __copyright__ = 'Copyright 2014 Alan Hamlett'

View File

@ -54,12 +54,13 @@ class Subversion(BaseProject):
'/usr/local/bin/svn', '/usr/local/bin/svn',
] ]
for location in locations: for location in locations:
try: with open(os.devnull, 'wb') as DEVNULL:
Popen([location, '--version']) try:
self.binary_location = location Popen([location, '--version'], stdout=DEVNULL, stderr=DEVNULL)
return location self.binary_location = location
except: return location
pass except:
pass
self.binary_location = 'svn' self.binary_location = 'svn'
return 'svn' return 'svn'