mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
configure.py: fix bug #11053
- add quotes around the path to the python executable
This commit is contained in:
parent
1137a6a7fe
commit
151ee98e3b
@ -1772,7 +1772,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