summaryrefslogtreecommitdiffstats
path: root/test/MSVC/RCCOM.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/MSVC/RCCOM.py')
-rw-r--r--test/MSVC/RCCOM.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/MSVC/RCCOM.py b/test/MSVC/RCCOM.py
index 3262f0c..e881bb5 100644
--- a/test/MSVC/RCCOM.py
+++ b/test/MSVC/RCCOM.py
@@ -31,7 +31,7 @@ when using MSVC.
import TestSCons
-python = TestSCons.python
+_python_ = TestSCons._python_
test = TestSCons.TestSCons()
@@ -49,7 +49,7 @@ sys.exit(0)
test.write('SConstruct', """
env = Environment(tools=['default', 'msvc'],
- RCCOM = r'%(python)s myrc.py $TARGET $SOURCES')
+ RCCOM = r'%(_python_)s myrc.py $TARGET $SOURCES')
env.RES(target = 'aaa', source = 'aaa.rc')
""" % locals())