summaryrefslogtreecommitdiff
path: root/app-editors/atom/files/apm-python.patch
blob: 0467beaf10eedd0dbfdb80e3b713f9bc1297bcb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/apm/bin/python-interceptor.sh b/apm/bin/python-interceptor.sh
index 7ce1965..12cc72f 100755
--- a/apm/bin/python-interceptor.sh
+++ b/apm/bin/python-interceptor.sh
@@ -34,9 +34,9 @@ case $1 in
       ARGS+=("--format=safemake.py")
     fi
 
-    exec python "${ARGS[@]}"
+    exec python2 "${ARGS[@]}"
     ;;
   *)
-    exec python "$@"
+    exec python2 "$@"
     ;;
 esac