diff options
author | Steven Knight <knight@baldmt.com> | 2004-09-21 03:46:21 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-09-21 03:46:21 (GMT) |
commit | e2995450dd47b5e106c16ee5768de7f6964a9408 (patch) | |
tree | d08468b60bbf4d6cbd7d0b7f397b34f61b4538e0 | |
parent | fec8f3c96bedd45fe3f0c594f2bdec8389cef108 (diff) | |
download | SCons-e2995450dd47b5e106c16ee5768de7f6964a9408.zip SCons-e2995450dd47b5e106c16ee5768de7f6964a9408.tar.gz SCons-e2995450dd47b5e106c16ee5768de7f6964a9408.tar.bz2 |
Fix a cut-and-paste typo in the memoized attributed name in the strfunction() method.
-rw-r--r-- | src/engine/SCons/Executor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Executor.py b/src/engine/SCons/Executor.py index bfb1a65..bb10ea0 100644 --- a/src/engine/SCons/Executor.py +++ b/src/engine/SCons/Executor.py @@ -139,7 +139,7 @@ class Executor: def strfunction(self): try: - return self.string + return self._strfunc except AttributeError: action = self.action build_env = self.get_build_env() |