diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/info/site.py | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/bot/exts/info/site.py b/bot/exts/info/site.py index e8e71558b..bcb04c909 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,8 @@ 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, placeholder='...')          if invalid:              await ctx.send(f":x: Invalid rule indices: {invalid}")  |