File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def resource_path(relative_path):
4747class PICALauncherApp :
4848 # --- Paste your entire existing PICALauncherApp class here ---
4949 # --- The only function you will replace is launch_script() ---
50-
50+
5151 PROGRAM_VERSION = "12.5"
5252 CLR_BG_DARK = '#2B3D4F'
5353 CLR_FRAME_BG = '#3A506B'
@@ -329,13 +329,13 @@ def launch_script(self, script_path):
329329 This is the robust solution for PyInstaller executables.
330330 """
331331 self .log (f"Launching: { os .path .basename (script_path )} " )
332-
332+
333333 abs_path = os .path .abspath (script_path )
334334 if not os .path .exists (abs_path ):
335335 self .log (f"ERROR: Script not found at { abs_path } " )
336336 messagebox .showerror ("File Not Found" , f"Script not found:\n \n { abs_path } " )
337337 return
338-
338+
339339 try :
340340 # Create a new process that will run our wrapper function
341341 proc = Process (target = run_script_process , args = (abs_path ,))
You can’t perform that action at this time.
0 commit comments