diff --git a/extensions/search.py b/extensions/search.py index c92c02a..1de5f32 100644 --- a/extensions/search.py +++ b/extensions/search.py @@ -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)