diff options
Diffstat (limited to 'bot/exts/info/site.py')
| -rw-r--r-- | bot/exts/info/site.py | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/bot/exts/info/site.py b/bot/exts/info/site.py index e8e71558b..3b4b561c7 100644 --- a/bot/exts/info/site.py +++ b/bot/exts/info/site.py @@ -1,3 +1,5 @@ +from textwrap import shorten +  from discord import Colour, Embed  from discord.ext.commands import Cog, Context, Greedy, group @@ -123,7 +125,7 @@ class Site(Cog):          # Remove duplicates and sort the rule indices          rules = sorted(set(rules)) -        invalid = ', '.join(str(index) for index in rules if index < 1 or index > len(full_rules)) +        invalid = shorten(', '.join(str(index) for index in rules if index < 1 or index > len(full_rules)), 50)          if invalid:              await ctx.send(f":x: Invalid rule indices: {invalid}") | 
