not using sys.executable for python path

This commit is contained in:
Alan Hamlett 2013-07-23 14:03:25 -07:00
parent 900b75056a
commit 8d259a6c00
1 changed files with 4 additions and 7 deletions

View File

@ -11,7 +11,6 @@ import sublime
import sublime_plugin
import platform
import sys
import time
import uuid
from os.path import expanduser, dirname, realpath, isfile, join, exists
@ -53,12 +52,10 @@ def api(targetFile, timestamp, isWrite=False, endtime=0):
if not targetFile:
targetFile = LAST_FILE
if targetFile:
python_binary = sys.executable
if platform.system() == 'Windows' and exists(python_binary+'w'):
python_binary = python_binary + 'w'
cmd = [python_binary, API_CLIENT,
python = 'python'
if platform.system() == 'Windows' and exists(python+'w'):
python = python+'w'
cmd = [python, API_CLIENT,
'--file', targetFile,
'--time', str('%f' % timestamp),
'--plugin', 'sublime-wakatime/%s' % __version__,