summaryrefslogtreecommitdiffstats
path: root/test/DVIPS/PSCOMSTR.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/DVIPS/PSCOMSTR.py')
-rw-r--r--test/DVIPS/PSCOMSTR.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/DVIPS/PSCOMSTR.py b/test/DVIPS/PSCOMSTR.py
index 9a565a4..67f960e 100644
--- a/test/DVIPS/PSCOMSTR.py
+++ b/test/DVIPS/PSCOMSTR.py
@@ -31,7 +31,7 @@ the displayed string when is called.
import TestSCons
-python = TestSCons.python
+_python_ = TestSCons._python_
test = TestSCons.TestSCons()
@@ -49,10 +49,10 @@ sys.exit(0)
test.write('SConstruct', """
env = Environment(tools=['default', 'dvips'],
- PSCOM = r'%s myps.py $TARGET $SOURCES',
+ PSCOM = r'%(_python_)s myps.py $TARGET $SOURCES',
PSCOMSTR = 'PostScripting $TARGET from $SOURCE')
env.PostScript(target = 'aaa', source = 'aaa.dvi')
-""" % python)
+""" % locals())
test.write('aaa.dvi', "aaa.dvi\n/*ps*/\n")