From 7542d664de7a9d42f64a81bc8c0b86bcbb384376 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Tue, 21 Oct 2008 07:11:36 -0700 Subject: Remove the Python 2.4 dependency and use just 'python' Many Linux distributions are including python2.5 by default, as it is the latest stable release of the language. Using python2.4 (and asking users to specifically install it) is just cruel and unusual punishment. Signed-off-by: Shawn O. Pearce --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.py') diff --git a/main.py b/main.py index 56092990..85c29417 100755 --- a/main.py +++ b/main.py @@ -15,7 +15,7 @@ # limitations under the License. magic='--calling-python-from-/bin/sh--' -"""exec" python2.4 -E "$0" "$@" """#$magic" +"""exec" python -E "$0" "$@" """#$magic" if __name__ == '__main__': import sys if sys.argv[-1] == '#%s' % magic: -- cgit v1.2.3-54-g00ecf