diff options
Diffstat (limited to 'Tools/Scripts/webkitpy/test')
-rw-r--r-- | Tools/Scripts/webkitpy/test/cat.py | 2 | ||||
-rw-r--r-- | Tools/Scripts/webkitpy/test/echo.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Tools/Scripts/webkitpy/test/cat.py b/Tools/Scripts/webkitpy/test/cat.py index ae1e143..ac56d1c 100644 --- a/Tools/Scripts/webkitpy/test/cat.py +++ b/Tools/Scripts/webkitpy/test/cat.py @@ -30,7 +30,7 @@ from webkitpy.common.system import fileutils def command_arguments(*args): - return ['python', __file__] + list(args) + return [sys.executable, __file__] + list(args) def main(): diff --git a/Tools/Scripts/webkitpy/test/echo.py b/Tools/Scripts/webkitpy/test/echo.py index f7468f7..5d4d8e2 100644 --- a/Tools/Scripts/webkitpy/test/echo.py +++ b/Tools/Scripts/webkitpy/test/echo.py @@ -30,7 +30,7 @@ from webkitpy.common.system import fileutils def command_arguments(*args): - return ['python', __file__] + list(args) + return [sys.executable, __file__] + list(args) def main(args=None): |