From 36a33780d03b0df9ed730907b6f1b61eed8c2334 Mon Sep 17 00:00:00 2001 From: Pado <ulrike.pado@hft-stuttgart.de> Date: Tue, 22 Oct 2024 09:51:24 +0000 Subject: [PATCH] Open .xlsx file without Windows command window --- Source/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/main.py b/Source/main.py index 41629ab..fb4df26 100644 --- a/Source/main.py +++ b/Source/main.py @@ -238,7 +238,7 @@ class App(ttk.Frame): workbook.close() t.close() - os.system(file_path) + os.startfile(file_path) def start_progress(): -- GitLab