From 4c70c67f31eaca248cdc4ddefd6db6144893cd6e Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Sat, 9 Jun 2018 14:11:19 -0800 Subject: [PATCH] changed help line length --- 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 43c5ae3..78fde8c 100644 --- a/src/exts/utils.py +++ b/src/exts/utils.py @@ -704,7 +704,7 @@ class Utils: @commands.command(name='help', aliases=['h']) @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=48) + pag = utils.Paginator(self.bot, embed=True, max_line_length=44) prefixes = await self.bot.get_custom_prefix(self.bot, ctx.message) if isinstance(prefixes, list): prefixes = ', '.join(prefixes)