From 283806576b68235511a92ef78747e59a48348914 Mon Sep 17 00:00:00 2001 From: Choco <94597336+ChocoMeow@users.noreply.github.com> Date: Mon, 3 Feb 2025 10:03:42 +0800 Subject: [PATCH] Fixed a syntax error for python 3.11 --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 2bbbdc1..f8e6d08 100644 --- a/main.py +++ b/main.py @@ -143,7 +143,7 @@ class Vocard(commands.Bot): await self.tree.sync() func.update_json("settings.json", new_data={"version": update.__version__}) for locale_key, values in func.MISSING_TRANSLATOR.items(): - func.logger.warning(f"Missing translation for '{", ".join(values)}' in '{locale_key}'") + func.logger.warning(f'Missing translation for "{", ".join(values)}" in "{locale_key}"') async def on_ready(self): func.logger.info("------------------")