From 3509d2a6edf33dcb5004439b90ef6ba9730705d9 Mon Sep 17 00:00:00 2001 From: Lars Kruse Date: Fri, 30 Oct 2015 05:23:16 +0100 Subject: [PATCH] remove python 2 compatibility due to widespread use of "yield from" --- plugins/network/ath9k_ | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/network/ath9k_ b/plugins/network/ath9k_ index 81229123..7c20207c 100755 --- a/plugins/network/ath9k_ +++ b/plugins/network/ath9k_ @@ -11,7 +11,6 @@ # # # This plugin works with the following python interpreters: -# * Python 2 # * Python 3 # * micropython # @@ -51,7 +50,7 @@ if which micropython >/dev/null; then /usr/bin/micropython "$0" "$@" else - python "$0" "$@" + python3 "$0" "$@" fi exit $? """