aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/stackoverflow.py
diff options
context:
space:
mode:
authorGravatar Vivaan Parashar <[email protected]>2021-06-07 20:55:21 +0530
committerGravatar Vivaan Parashar <[email protected]>2021-06-07 20:55:21 +0530
commit5296e7a7aec536de86a752a6f424a582d32bade5 (patch)
tree895c5b7a9bdd62b6151c8a4cb30d09c2bab3aabd /bot/exts/evergreen/stackoverflow.py
parentstop 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.py2
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)