From 1e35f9618afa92d690cc3b80e9be54ad3787c69f Mon Sep 17 00:00:00 2001 From: CPD Date: Thu, 6 Mar 2025 11:54:01 +0100 Subject: [PATCH] Catch FileNotFound --- cpdctrl_gui/ui/widgets/about.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/cpdctrl_gui/ui/widgets/about.py b/cpdctrl_gui/ui/widgets/about.py index eca7262..62ea3e7 100644 --- a/cpdctrl_gui/ui/widgets/about.py +++ b/cpdctrl_gui/ui/widgets/about.py @@ -4,14 +4,21 @@ from PyQt6.QtGui import QDesktopServices from ...resources import get_resource_path +import logging +log = logging.getLogger(__name__) + class MarkdownView(QTextBrowser): def __init__(self, path): super().__init__() self.setReadOnly(True) self.filepath = get_resource_path(path) - with open(self.filepath, "r") as file: - content = file.read() - self.setMarkdown(content) + try: + with open(self.filepath, "r") as file: + content = file.read() + self.setMarkdown(content) + except FileNotFoundError: + log.error(f"File not found: {self.filepath}") + self.setMarkdown(f"## File not found\n`{self.filepath}`") # open links with the OS web browser self.anchorClicked.connect(QDesktopServices.openUrl)