summaryrefslogtreecommitdiffstats
path: root/test/MSVC/PCHCOMSTR.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/MSVC/PCHCOMSTR.py')
-rw-r--r--test/MSVC/PCHCOMSTR.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/MSVC/PCHCOMSTR.py b/test/MSVC/PCHCOMSTR.py
index c5ab9f5..23322d4 100644
--- a/test/MSVC/PCHCOMSTR.py
+++ b/test/MSVC/PCHCOMSTR.py
@@ -31,7 +31,7 @@ the displayed string when pch 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', 'msvc'],
- PCHCOM = r'%s mypch.py $TARGET $SOURCES',
+ PCHCOM = r'%(_python_)s mypch.py $TARGET $SOURCES',
PCHCOMSTR = 'PCHing $TARGET from $SOURCE')
env.PCH(target = 'aaa', source = 'aaa.h')
-""" % python)
+""" % locals())
test.write('aaa.h', "aaa.h\n/*pch*/\n")