From 027b63fd3d44500369a7b921d5880988dd4ed875 Mon Sep 17 00:00:00 2001 From: Abhi <85984486+AbhiTheModder@users.noreply.github.com> Date: Fri, 7 Feb 2025 12:16:11 +0530 Subject: [PATCH] Fix logging format --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 8e4721b..f84faa9 100644 --- a/main.py +++ b/main.py @@ -104,9 +104,9 @@ def load_missing_modules(): if resp.ok: with open(module_path, "wb") as f: f.write(resp.content) - logging.info(f"Loaded missing module: %s", {module_name}) + logging.info("Loaded missing module: %s", {module_name}) else: - logging.warning(f"Failed to load module: %s", {module_name}) + logging.warning("Failed to load module: %s", {module_name}) async def main():