From 43a2c9d76697d698f5b60523bc95b87a3c063142 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Wed, 2 Aug 2023 01:09:39 -0400 Subject: [PATCH] fix: reason is now wrapped in ` ` in dl-blacklist add command --- musicdownloader/musicdownloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/musicdownloader/musicdownloader.py b/musicdownloader/musicdownloader.py index 60c2ab0..83122e0 100644 --- a/musicdownloader/musicdownloader.py +++ b/musicdownloader/musicdownloader.py @@ -201,7 +201,7 @@ class MusicDownloader(commands.Cog): cur.execute("INSERT INTO blacklist_log (user_id, reason) VALUES (?, ?);", (user.id, reason)) con.commit() con.close() - await ctx.send(f"{user.mention} has been added to the blacklist with the reason: {reason or 'No reason provided.'}") + await ctx.send(f"{user.mention} has been added to the blacklist with the reason: `{reason or 'No reason provided.'}`") @blacklist.command(name='remove') @checks.is_owner()