From ac00cd5e0920c1baa8d0f9b7e252597336416cf6 Mon Sep 17 00:00:00 2001 From: Lukas Baumann Date: Thu, 3 Dec 2020 02:46:47 +0100 Subject: [PATCH] Update Changer.py --- Changer.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Changer.py b/Changer.py index 2a3732e..c3f622e 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.exe"], shell=True, creationflags=CREATE_NEW_CONSOLE) + Popen(["wrapper.py"], shell=True, creationflags=CREATE_NEW_CONSOLE) else: - Popen(["wrapper.exe"], shell=True, creationflags=DETACHED_PROCESS) + Popen(["wrapper.py"], shell=True, creationflags=DETACHED_PROCESS) if ids[e.GetId()] == "Refresh": integrity_check() @@ -180,4 +180,4 @@ def main(): if __name__ == '__main__': - main() \ No newline at end of file + main()