Tweak Markdown-not-installed console warnings

Adding single-quotation marks should cause 'markdown' to be highlighted
in green, presumably via Rich.
This commit is contained in:
Justin Mayer 2024-06-25 10:49:07 +02:00
commit 6a50191728
2 changed files with 4 additions and 4 deletions

View file

@ -353,8 +353,8 @@ class MarkdownReader(BaseReader):
def disabled_message(self) -> str:
return (
"Could not import markdown.Markdown. "
"Have you installed the markdown package?"
"Could not import 'markdown.Markdown'. "
"Have you installed the 'markdown' package?"
)