Catch FileNotFound

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

View File

@ -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)