summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/ActionTests.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-09-19 11:13:56 (GMT)
committerSteven Knight <knight@baldmt.com>2005-09-19 11:13:56 (GMT)
commite1396d1d472af57da30cc822da5494f208f115eb (patch)
tree458cbda69597f4d731acb4ea8d68802708d7055b /src/engine/SCons/ActionTests.py
parent895040e6e3d6a9061609387e9fd3fff21a16f5f0 (diff)
downloadSCons-e1396d1d472af57da30cc822da5494f208f115eb.zip
SCons-e1396d1d472af57da30cc822da5494f208f115eb.tar.gz
SCons-e1396d1d472af57da30cc822da5494f208f115eb.tar.bz2
Give the subst logic its own SCons.Subst module. It's big enough.
Diffstat (limited to 'src/engine/SCons/ActionTests.py')
-rw-r--r--src/engine/SCons/ActionTests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/SCons/ActionTests.py b/src/engine/SCons/ActionTests.py
index f5aa67a..ff23cd7 100644
--- a/src/engine/SCons/ActionTests.py
+++ b/src/engine/SCons/ActionTests.py
@@ -136,10 +136,10 @@ class Environment:
self.d[k] = v
# Just use the underlying scons_subst*() utility methods.
def subst(self, strSubst, raw=0, target=[], source=[]):
- return SCons.Util.scons_subst(strSubst, self, raw, target, source, self.d)
+ return SCons.Subst.scons_subst(strSubst, self, raw, target, source, self.d)
subst_target_source = subst
def subst_list(self, strSubst, raw=0, target=[], source=[]):
- return SCons.Util.scons_subst_list(strSubst, self, raw, target, source, self.d)
+ return SCons.Subst.scons_subst_list(strSubst, self, raw, target, source, self.d)
def __getitem__(self, item):
return self.d[item]
def __setitem__(self, item, value):