From 499adbfcedc1c9e36ab57038d3225c2d746f12d5 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Fri, 8 Jun 2018 12:42:19 -0800 Subject: [PATCH] fixed help --- src/exts/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exts/utils.py b/src/exts/utils.py index 58a0e3c..75bd46e 100644 --- a/src/exts/utils.py +++ b/src/exts/utils.py @@ -703,7 +703,7 @@ class Utils: @commands.cooldown(1, 5, commands.BucketType.user) async def custom_help(self, ctx, command: str=None): pag = utils.Paginator(self.bot, embed=True, max_line_length=50) - prefixes = await self.bot.get_custom_prefix() + prefixes = await self.bot.get_custom_prefix(self.bot, ctx.message) if isinstance(prefixes, list): prefixes = ', '.join(prefixes) owner = await self.bot.get_user_info(self.bot.owner_id)