From 1d1c0abe6b1e5490e6dd6e42013fd3d63ff1340a Mon Sep 17 00:00:00 2001 From: David Meyer Date: Fri, 21 Nov 2025 10:47:06 -0500 Subject: [PATCH] Switch `exec_` to `exec` --- runviewer/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runviewer/__main__.py b/runviewer/__main__.py index bbccb2a..8aa1bb2 100644 --- a/runviewer/__main__.py +++ b/runviewer/__main__.py @@ -1671,7 +1671,7 @@ def handler(self, h5_filepath): splash.hide() def execute_program(): - qapplication.exec_() + qapplication.exec() # Let the interpreter run every 500ms so it sees Ctrl-C interrupts: timer = QTimer()