now able to get error: 'python: command not found'

pull/658/head
Steven Robertson 5 years ago
parent defa5ef853
commit 2ff48316f6

@ -1471,10 +1471,10 @@ class Connection(object):
# quoting the entire command necessary to invoke python supports
# complex python_paths
return ["'" + python_path + ' -c '
+ '"\'import codecs,os,sys;_=codecs.decode;'
'exec(_(_("%s".encode(),"base64"),"zip"))\'"' % (encoded.decode(),),
"'"]
return ["'" + python_path, '-c',
'import codecs,os,sys;_=codecs.decode;'
'exec(_(_("%s".encode(),"base64"),"zip"))\'' % (encoded.decode(),)
]
"""
return self.get_python_argv() + [

Loading…
Cancel
Save