From 87f3d50eb818b76db630dd1066886694a8809057 Mon Sep 17 00:00:00 2001 From: Xevion Date: Sun, 3 Nov 2019 02:33:44 -0600 Subject: [PATCH] quick update to use python3 app not python(2) !! --- app/spotify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/spotify.py b/app/spotify.py index a157cd2..f8380ea 100644 --- a/app/spotify.py +++ b/app/spotify.py @@ -22,5 +22,5 @@ def check_and_update(): def spotify(): if check_and_update(): print('Graph out of date - running udpate command') - r = subprocess.run(['python', './app/spotify_explicit/main.py']) + r = subprocess.run(['python3', './app/spotify_explicit/main.py']) return send_file('spotify_explicit/export/export.png') \ No newline at end of file