From ab61beed29ecad3502ffc3591ea8220516ea79fa Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Fri, 27 Sep 2019 15:17:27 -0500 Subject: [PATCH] Changed how the base url is handled --- GeoffreyBot/geoffrey.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GeoffreyBot/geoffrey.py b/GeoffreyBot/geoffrey.py index 99ea5ce..6be3633 100644 --- a/GeoffreyBot/geoffrey.py +++ b/GeoffreyBot/geoffrey.py @@ -30,8 +30,8 @@ class GeoffreyBot(commands.Bot): self.base_url = base_url self.api_token = api_token - settings_url = base_url + '/GeoffreyApp/api/settings/' - command_list_url = base_url + '/GeoffreyApp/api/command/commands' + settings_url = base_url + 'api/settings/' + command_list_url = base_url + 'api/command/commands' logger.info("Connecting to the Geoffrey API... ")