Fix path python in OSx

This commit is contained in:
Mauricio Baeza 2020-03-09 20:19:54 -06:00
parent 8e84fa8986
commit 9cfb77f381
4 changed files with 2 additions and 3 deletions

View File

@ -132,7 +132,7 @@ IS_WIN = OS == 'Windows'
LOG_NAME = 'ZAZ'
CLIPBOARD_FORMAT_TEXT = 'text/plain;charset=utf-16'
PYTHON = 'python3'
PYTHON = 'python'
if IS_WIN:
PYTHON = 'python.exe'
CALC = 'calc'

Binary file not shown.

View File

@ -295,7 +295,6 @@ class ZAZPip(unohelper.Base, XJobExecutor):
# ~ path_python = app.PYTHON
# ~ if app.IS_WIN:
path_python = app.get_path_python()
app.msgbox(path_python)
# ~ cmd = app.PYTHON + ' -V'
# ~ if app.IS_WIN:
cmd = '"{}" -V'.format(path_python)

View File

@ -132,7 +132,7 @@ IS_WIN = OS == 'Windows'
LOG_NAME = 'ZAZ'
CLIPBOARD_FORMAT_TEXT = 'text/plain;charset=utf-16'
PYTHON = 'python3'
PYTHON = 'python'
if IS_WIN:
PYTHON = 'python.exe'
CALC = 'calc'