Oh actually fix it

This commit is contained in:
Adriene Hutchins 2020-03-24 19:25:30 -04:00
parent 41ad559dc3
commit 933ff42c6c
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ class Search(commands.Cog, name="Basic"):
other_results: List[str] = []
for r in results[1:count]:
title = self.tomd.handle(r['title']).rstrip('\n')
url = results['url']
url = r['url']
other_results.append(f"**{title}** <{url}>")
other_msg: str = "\n".join(other_results)