From b75ff1a161e93105ebbd4c1816b0f0740e7a7671 Mon Sep 17 00:00:00 2001 From: fsemerar Date: Mon, 11 Mar 2024 11:08:15 -0700 Subject: [PATCH] Added error print to main_window --- arcjetCV/gui/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arcjetCV/gui/main_window.py b/arcjetCV/gui/main_window.py index 6593b97..281f072 100644 --- a/arcjetCV/gui/main_window.py +++ b/arcjetCV/gui/main_window.py @@ -406,7 +406,7 @@ def load_video(self): except Exception as e: if self.testing: - print("Could not load video") + print("! Could not load video !:\n" + str(e)) else: msg = QMessageBox() msg.setWindowTitle("arcjetCV Warning")