Fixed a syntax error for python 3.11

This commit is contained in:
Choco
2025-02-03 10:03:42 +08:00
parent 7b45a068c4
commit 283806576b

View File

@@ -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("------------------")