mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
configure.py: fix bug #11053
- add quotes around the path to the python executable
This commit is contained in:
parent
905516fd70
commit
64d1751f2f
@ -1777,7 +1777,7 @@ def rescanTeXFiles():
|
||||
interpreter = sys.executable
|
||||
if interpreter == '':
|
||||
interpreter = "python"
|
||||
tfp = cmdOutput(interpreter + " -tt " + '"'
|
||||
tfp = cmdOutput('"' + interpreter + '"' + " -tt " + '"'
|
||||
+ os.path.join(srcdir, 'scripts', 'TeXFiles.py') + '"')
|
||||
logger.info(tfp)
|
||||
logger.info("\tdone")
|
||||
|
Loading…
Reference in New Issue
Block a user