Catch FileNotFound
This commit is contained in:
parent
e6dc2ee6b2
commit
1e35f9618a
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user