diff options
author | 2021-06-07 20:55:21 +0530 | |
---|---|---|
committer | 2021-06-07 20:55:21 +0530 | |
commit | 5296e7a7aec536de86a752a6f424a582d32bade5 (patch) | |
tree | 895c5b7a9bdd62b6151c8a4cb30d09c2bab3aabd /bot/exts/evergreen/stackoverflow.py | |
parent | stop spamming stackoverflow api in case (diff) |
use normal string instead of raw string
Diffstat (limited to 'bot/exts/evergreen/stackoverflow.py')
-rw-r--r-- | bot/exts/evergreen/stackoverflow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/stackoverflow.py b/bot/exts/evergreen/stackoverflow.py index 8607cac7..8dd4a060 100644 --- a/bot/exts/evergreen/stackoverflow.py +++ b/bot/exts/evergreen/stackoverflow.py @@ -44,7 +44,7 @@ class Stackoverflow(commands.Cog): return elif not data['items']: no_search_result = Embed( - title=f"No search results found for {search_query!r}", + title=f"No search results found for {search_query}", color=Colours.soft_red ) await ctx.send(embed=no_search_result) |