mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 18:43:37 +00:00
Simplify code a bit.
This commit is contained in:
parent
175ba16966
commit
490506c45f
@ -1766,14 +1766,14 @@ def checkTeXAllowSpaces():
|
||||
def rescanTeXFiles():
|
||||
''' Run kpsewhich to update information about TeX files '''
|
||||
logger.info("+Indexing TeX files... ")
|
||||
if not os.path.isfile( os.path.join(srcdir, 'scripts', 'TeXFiles.py') ):
|
||||
tfscript = os.path.join(srcdir, 'scripts', 'TeXFiles.py')
|
||||
if not os.path.isfile(tfscript):
|
||||
logger.error("configure: error: cannot find TeXFiles.py script")
|
||||
sys.exit(1)
|
||||
interpreter = sys.executable
|
||||
if interpreter == '':
|
||||
interpreter = "python"
|
||||
tfp = cmdOutput('"%s" -tt "%s"' % (interpreter,\
|
||||
os.path.join(srcdir, 'scripts', 'TeXFiles.py')))
|
||||
tfp = cmdOutput('"%s" -tt "%s"' % (interpreter, tfscript))
|
||||
logger.info(tfp)
|
||||
logger.info("\tdone")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user