aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar rohan <[email protected]>2021-05-17 00:40:43 +0530
committerGravatar rohan <[email protected]>2021-05-17 00:40:43 +0530
commit3ead648f03e56d3134056c96527e0a2e22c16e6c (patch)
tree1608aa1de18368cb7fe106afd4a5cfcd63021238
parentMerge branch 'voice_ver_dm' of https://github.com/RohanJnr/bot into voice_ver_dm (diff)
Remove redundant f-string.
-rw-r--r--bot/exts/moderation/voice_gate.py2
1 files changed, 1 insertions, 1 deletions
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()