]> git.lyx.org Git - lyx.git/blobdiff - lib/scripts/fig2pstex.py
Converters: slightly more pythonic code.
[lyx.git] / lib / scripts / fig2pstex.py
index 7530aa3596b88cb3bc9d15d72545888fcd1b1f4a..90e163de40b2819b3a1d134e1a48b062117afa67 100644 (file)
@@ -1,5 +1,4 @@
-#!/usr/bin/env python -tt
-# -*- coding: iso-8859-1 -*-
+# -*- coding: utf-8 -*-
 
 # file fig2pstex.py
 # This file is part of LyX, the document processor.
@@ -27,6 +26,7 @@
 #   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.
@@ -46,5 +46,5 @@ outbase = os.path.splitext(output)[0]
 # 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:
-  print 'fig2dev fails'
+  print ('fig2dev fails')
   sys.exit(1)