From 3ead648f03e56d3134056c96527e0a2e22c16e6c Mon Sep 17 00:00:00 2001 From: rohan Date: Mon, 17 May 2021 00:40:43 +0530 Subject: Remove redundant f-string. --- bot/exts/moderation/voice_gate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/exts/moderation/voice_gate.py b/bot/exts/moderation/voice_gate.py index 4558bbf94..9d51d37f5 100644 --- a/bot/exts/moderation/voice_gate.py +++ b/bot/exts/moderation/voice_gate.py @@ -158,7 +158,7 @@ class VoiceGate(Cog): try: await ctx.author.send(embed=embed) except discord.Forbidden: - log.info(f"Could not send user DM. Sending in voice-verify channel and scheduling delete.") + log.info("Could not send user DM. Sending in voice-verify channel and scheduling delete.") message = await ctx.send(embed=embed) await asyncio.sleep(GateConf.voice_ping_delete_delay) await message.delete() -- cgit v1.2.3