From c06c972039b94225cc06e9f7f70f28a4c2ace116 Mon Sep 17 00:00:00 2001 From: Brian May Date: Sat, 28 Nov 2015 16:02:47 +1100 Subject: [PATCH] Prefer Python3 by default. --- run | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run b/run index 7fd71d4..9232659 100755 --- a/run +++ b/run @@ -1,6 +1,6 @@ #!/bin/sh -if python2 -V 2>/dev/null; then - exec python2 -m "sshuttle" "$@" +if python3 -V 2>/dev/null; then + exec python3 -m "sshuttle" "$@" else exec python -m "sshuttle" "$@" fi