summaryrefslogtreecommitdiffstats
path: root/test/Java/JAVACCOM.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Java/JAVACCOM.py')
-rw-r--r--test/Java/JAVACCOM.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Java/JAVACCOM.py b/test/Java/JAVACCOM.py
index 171649c..7086a2a 100644
--- a/test/Java/JAVACCOM.py
+++ b/test/Java/JAVACCOM.py
@@ -30,7 +30,7 @@ Test the ability to configure the $JAVACCOM construction variable.
import TestSCons
-python = TestSCons.python
+_python_ = TestSCons._python_
test = TestSCons.TestSCons()
@@ -50,7 +50,7 @@ sys.exit(0)
test.write('SConstruct', """
env = Environment(TOOLS = ['default', 'javac'],
- JAVACCOM = r'%(python)s myjavac.py $TARGET $SOURCES')
+ JAVACCOM = r'%(_python_)s myjavac.py $TARGET $SOURCES')
env.Java(target = 'classes', source = 'src')
""" % locals())