From 30d6db1e5e16e91e298ee3d9bda29b4794e2b0f6 Mon Sep 17 00:00:00 2001 From: Keoni Mahelona Date: Sun, 22 Mar 2020 23:33:26 +1300 Subject: [PATCH] Make sure command calls python3 --- python_apps/pypo/liquidsoap/ls_script.liq | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/pypo/liquidsoap/ls_script.liq b/python_apps/pypo/liquidsoap/ls_script.liq index a832a0e1f..35e5f7d19 100644 --- a/python_apps/pypo/liquidsoap/ls_script.liq +++ b/python_apps/pypo/liquidsoap/ls_script.liq @@ -244,7 +244,7 @@ def check_auth(user="", password="", ~type="master") = log("#{type} user #{user} connected",label="#{type}_source") # Check auth based on return value from auth script - ret = snd(snd(run_process("python #{auth_path} --#{type} #{user} #{password}"))) == "0" + ret = snd(snd(run_process("python3 #{auth_path} --#{type} #{user} #{password}"))) == "0" if ret then log("#{type} user #{user} authenticated",label="#{type}_source")