From 837979232e03a01c8d37f4b7aad25f08344a9e6d Mon Sep 17 00:00:00 2001 From: Christian Morpurgo Date: Thu, 24 Apr 2025 20:00:38 +0200 Subject: [PATCH] fix because we are using python 3.3 sic --- MarkdownLivePreview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MarkdownLivePreview.py b/MarkdownLivePreview.py index dc2e368..d744722 100644 --- a/MarkdownLivePreview.py +++ b/MarkdownLivePreview.py @@ -222,7 +222,7 @@ class MarkdownLivePreviewListener(sublime_plugin.EventListener): settings = get_settings() delay = settings.get(SETTING_DELAY_BETWEEN_UPDATES, 100) # Provide default font_scale = settings.get(SETTING_FONT_SCALE, 1.0) # Provide default - print(f"--- MarkdownLivePreview: Using font_scale: {font_scale} ---") + print("--- MarkdownLivePreview: Using font_scale: {} ---".format(font_scale)) if time.time() - self.last_update < delay / 1000: return