diff --git a/functions-common b/functions-common index df295a3395..78710deeb0 100644 --- a/functions-common +++ b/functions-common @@ -2301,12 +2301,7 @@ function install_oscwrap { function cleanup_oscwrap { local total=0 - if python3_enabled ; then - local python=python3 - else - local python=python - fi - total=$(cat $OSCWRAP_TIMER_FILE | $python -c "import sys; print(sum(int(l) for l in sys.stdin))") + total=$(cat $OSCWRAP_TIMER_FILE | $PYTHON -c "import sys; print(sum(int(l) for l in sys.stdin))") _TIME_TOTAL["osc"]=$total rm $OSCWRAP_TIMER_FILE }