mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-12 22:14:35 +00:00
Use pythonic syntax, as suggested by José.
(cherry picked from commit cec9edd34b
)
This commit is contained in:
parent
11d20e132a
commit
96ec4d645b
@ -1772,8 +1772,8 @@ def rescanTeXFiles():
|
||||
interpreter = sys.executable
|
||||
if interpreter == '':
|
||||
interpreter = "python"
|
||||
tfp = cmdOutput(interpreter + " -tt " + '"'
|
||||
+ os.path.join(srcdir, 'scripts', 'TeXFiles.py') + '"')
|
||||
tfp = cmdOutput('"%s" -tt "%s"' % (interpreter,\
|
||||
os.path.join(srcdir, 'scripts', 'TeXFiles.py')))
|
||||
logger.info(tfp)
|
||||
logger.info("\tdone")
|
||||
|
||||
|
@ -65,6 +65,8 @@ What's new
|
||||
|
||||
* INTERNALS
|
||||
|
||||
- Properly quote python interpreter when scanning TeX files.
|
||||
|
||||
|
||||
* DOCUMENTATION AND LOCALIZATION
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user