]> git.lyx.org Git - lyx.git/blobdiff - lib/scripts/fig2pdftex.py
Mostly documentation for the pythonic part of instant preview.
[lyx.git] / lib / scripts / fig2pdftex.py
index 3be7004fdfa85dd0dc57a289e90895e0bf0a0b35..e20b2ad06b32e92169113cdc69af643de1c7da61 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-# -*- coding: iso-8859-15 -*-
+# -*- coding: utf-8 -*-
 
 # file fig2pdf.py
 # This file is part of LyX, the document processor.
@@ -78,7 +78,7 @@ else:
     # The generated PostScript commands are extracted from epstopdf, distributed
     # with tetex.
     epsfile = outbase + '.pstex'
-    tmp = open(epsfile + '.??', 'w')
+    tmp = mkstemp()
     boundingboxline = re.compile('%%BoundingBox:\s+(\d*)\s+(\d*)\s+(\d*)\s+(\d*)')
     for line in open(epsfile).xreadlines():
         if line[:13] == '%%BoundingBox':