Catch FileNotFound

This commit is contained in:
CPD 2025-03-06 11:54:01 +01:00
parent e6dc2ee6b2
commit 1e35f9618a

@ -4,14 +4,21 @@ from PyQt6.QtGui import QDesktopServices
from ...resources import get_resource_path from ...resources import get_resource_path
import logging
log = logging.getLogger(__name__)
class MarkdownView(QTextBrowser): class MarkdownView(QTextBrowser):
def __init__(self, path): def __init__(self, path):
super().__init__() super().__init__()
self.setReadOnly(True) self.setReadOnly(True)
self.filepath = get_resource_path(path) self.filepath = get_resource_path(path)
with open(self.filepath, "r") as file: try:
content = file.read() with open(self.filepath, "r") as file:
self.setMarkdown(content) 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 # open links with the OS web browser
self.anchorClicked.connect(QDesktopServices.openUrl) self.anchorClicked.connect(QDesktopServices.openUrl)