Skip to content

Commit e3ee114

Browse files
Update PICA_Launcher_V4.py
1 parent a1f95aa commit e3ee114

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

PICA_Launcher_V4.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def resource_path(relative_path):
4747
class 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,))

0 commit comments

Comments
 (0)