]> git.lyx.org Git - lyx.git/blobdiff - lib/scripts/fig2pstex.py
Remove profiling.py
[lyx.git] / lib / scripts / fig2pstex.py
index 90e163de40b2819b3a1d134e1a48b062117afa67..5a3ee854fb3f58a8f1d1c62a2cf6a00184c5fa7a 100644 (file)
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-
 # file fig2pstex.py
 # This file is part of LyX, the document processor.
 # Licence details can be found in the file COPYING.
@@ -26,7 +24,6 @@
 #   the real eps file will be overwritten by a tex file named file.eps.
 #
 
-from __future__ import print_function
 import os, sys
 
 # We expect two args, the names of the input and output files.
@@ -44,7 +41,7 @@ outbase = os.path.splitext(output)[0]
 
 # Generate the EPS file
 # Generate the PSTEX_T file
-if os.system('fig2dev -Lpstex %s %s.eps' % (input, outbase)) != 0 or \
-  os.system('fig2dev -Lpstex_t -p%s %s %s' % (outbase, input, output)) != 0:
+if os.system(f'fig2dev -Lpstex {input} {outbase}.eps') != 0 or \
+  os.system(f'fig2dev -Lpstex_t -p{outbase} {input} {output}') != 0:
   print ('fig2dev fails')
   sys.exit(1)