From 5adbf179e3b31d326b8a2afd3a56d3358081b3ec Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Sun, 9 Feb 2020 17:46:54 -0600 Subject: [PATCH] Wrapped location urls in escape sequence --- GeoffreyBot/geoffrey_formatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GeoffreyBot/geoffrey_formatter.py b/GeoffreyBot/geoffrey_formatter.py index 083a421..d1d30ba 100644 --- a/GeoffreyBot/geoffrey_formatter.py +++ b/GeoffreyBot/geoffrey_formatter.py @@ -88,7 +88,7 @@ def formatted_location_info(location, base_url): info.append(formatted_location(location)) - info.append(get_full_link(base_url, location["link"])) + info.append("<{}>".format(get_full_link(base_url, location["link"]))) return info