From 933ff42c6cf7c85766150b3555d0f60a81cdfdf4 Mon Sep 17 00:00:00 2001 From: Adriene Hutchins Date: Tue, 24 Mar 2020 19:25:30 -0400 Subject: [PATCH] Oh actually fix it --- extensions/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)