diff options
Diffstat (limited to 'test/scons-time/run')
-rw-r--r-- | test/scons-time/run/option/verbose.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/scons-time/run/option/verbose.py b/test/scons-time/run/option/verbose.py index 7f693d1..5fc6d64 100644 --- a/test/scons-time/run/option/verbose.py +++ b/test/scons-time/run/option/verbose.py @@ -28,11 +28,12 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" Verify that the run -v and --verbose options display command output. """ +import sys import re import TestSCons_time -_python_ = re.escape(TestSCons_time._python_) +_python_ = re.escape('"' + sys.executable + '"') test = TestSCons_time.TestSCons_time(match = TestSCons_time.match_re, |