mirror of
https://github.com/polyjitter/searchbot-discord.git
synced 2024-08-14 22:46:55 +00:00
Oh actually fix it
This commit is contained in:
parent
41ad559dc3
commit
933ff42c6c
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ class Search(commands.Cog, name="Basic"):
|
||||||
other_results: List[str] = []
|
other_results: List[str] = []
|
||||||
for r in results[1:count]:
|
for r in results[1:count]:
|
||||||
title = self.tomd.handle(r['title']).rstrip('\n')
|
title = self.tomd.handle(r['title']).rstrip('\n')
|
||||||
url = results['url']
|
url = r['url']
|
||||||
other_results.append(f"**{title}** <{url}>")
|
other_results.append(f"**{title}** <{url}>")
|
||||||
other_msg: str = "\n".join(other_results)
|
other_msg: str = "\n".join(other_results)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue