Assure print function compatibility in python 2.x

This commit is contained in:
Juergen Spitzmueller 2017-11-24 11:56:41 +01:00
parent bf12cebdc0
commit eb2dbb8b09
2 changed files with 4 additions and 0 deletions

View File

@ -27,6 +27,8 @@
# the real PDF file would be overwritten by a TeX file named outputfile.pdf.
#
from __future__ import print_function
import os, sys, re, subprocess
def runCommand(cmd):

View File

@ -30,6 +30,8 @@
# This script converts an SVG image to something that latex can process
# into high quality PostScript.
from __future__ import print_function
import os, sys, re, subprocess
def runCommand(cmd):