From cd502bcdc61f9f8b4fb31b0c7e2f9dac9cf6e955 Mon Sep 17 00:00:00 2001 From: Sean Breckenridge Date: Wed, 9 Feb 2022 16:36:06 -0800 Subject: [PATCH] source; add missing f-string --- my/core/source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/my/core/source.py b/my/core/source.py index a8acd69..e3325a7 100644 --- a/my/core/source.py +++ b/my/core/source.py @@ -54,7 +54,7 @@ def import_source( medium(f"Module {factory_func.__qualname__} could not be imported, or isn't configured properly") else: medium(f"Module {module_name} ({factory_func.__qualname__}) could not be imported, or isn't configured properly") - warn("""To hide this message, add {module_name} to your core config disabled_classes, like: + warn(f"""To hide this message, add {module_name} to your core config disabled_classes, like: class core: disabled_modules = [{repr(module_name)}]