From 446adfa6dcea596492bf253a2087604775569e82 Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Sun, 16 Sep 2018 22:52:04 -0500 Subject: [PATCH] help in channel message now works regardless of case --- geoffrey/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geoffrey/bot.py b/geoffrey/bot.py index fe2a7b5..ae1305b 100644 --- a/geoffrey/bot.py +++ b/geoffrey/bot.py @@ -76,7 +76,7 @@ class GeoffreyBot(commands.Bot): logger.info("User %s, used command %s%s with context: %s", ctx.message.author, ctx.command, subcommand, ctx.args) - if ctx.invoked_with == 'help': + if ctx.invoked_with.lower() == 'help': await ctx.send("{}, I sent you some help in the DMs.".format(ctx.message.author.mention)) async def on_command_error(self, ctx, error):