diff options
Diffstat (limited to 'discord/ext')
| -rw-r--r-- | discord/ext/commands/bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py index 71ec5189..2dd22772 100644 --- a/discord/ext/commands/bot.py +++ b/discord/ext/commands/bot.py @@ -137,7 +137,7 @@ async def _default_help_command(ctx, *commands : str): pages = await bot.formatter.format_help_for(ctx, command) if bot.pm_help is None: - characters = sum(map(lambda l: len(l), pages)) + characters = sum(map(len, pages)) # modify destination based on length of pages. if characters > 1000: destination = ctx.message.author |