From b0fcdd862309ff8f51499a24647e8694624cc924 Mon Sep 17 00:00:00 2001 From: Lukas Baumann Date: Thu, 3 Dec 2020 03:07:58 +0100 Subject: [PATCH] Update Changer.py --- Changer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Changer.py b/Changer.py index c3f622e..352d3b2 100644 --- a/Changer.py +++ b/Changer.py @@ -154,9 +154,9 @@ class ChangerUI(wx.Frame): if ids[e.GetId()] == "Start": if int(open(CONFIG, "r").read().split()[2]): - Popen(["wrapper.py"], shell=True, creationflags=CREATE_NEW_CONSOLE) + Popen(["python3", "wrapper.py"], shell=True, creationflags=CREATE_NEW_CONSOLE) else: - Popen(["wrapper.py"], shell=True, creationflags=DETACHED_PROCESS) + Popen(["python3", "wrapper.py"], shell=True, creationflags=DETACHED_PROCESS) if ids[e.GetId()] == "Refresh": integrity_check()