diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/utils.py | 11 | 
1 files changed, 10 insertions, 1 deletions
| diff --git a/bot/cogs/utils.py b/bot/cogs/utils.py index 024141d62..2ca2c028e 100644 --- a/bot/cogs/utils.py +++ b/bot/cogs/utils.py @@ -230,7 +230,16 @@ class Utils(Cog):              await ctx.send(embed=embed)              return -        # handle if it's a search string +        # Try to handle first exact word due difflib.SequenceMatched may use some other similar word instead +        # exact word. +        for i, line in enumerate(zen_lines): +            if search_value.lower() in line.lower(): +                embed.title += f" (line {i}):" +                embed.description = line +                await ctx.send(embed=embed) +                return + +        # handle if it's a search string and not exact word          matcher = difflib.SequenceMatcher(None, search_value.lower())          best_match = "" | 
