From ba81bc78c908cc57193789ca0e6a7a3f5b840dd2 Mon Sep 17 00:00:00 2001 From: Twentysix Date: Tue, 22 Mar 2016 15:10:38 +0100 Subject: [PATCH] Fix for lazy people --- cogs/downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/downloader.py b/cogs/downloader.py index f1221c078..1d6eb2254 100644 --- a/cogs/downloader.py +++ b/cogs/downloader.py @@ -70,7 +70,7 @@ class Downloader: answer = await self.bot.wait_for_message(timeout=15, author=ctx.message.author) if answer is None: await self.bot.say("Ok then, you can reload cogs with `{}reload `".format(ctx.prefix)) - elif answer.content.lower().strip() == "yes": + elif answer.content.lower().strip() in ["yes", "y"]: for cog in installed_user_cogs: self.bot.unload_extension("cogs." + cog) self.bot.load_extension("cogs." + cog)