Changed how the base url is handled

master
Joey Hines 2019-09-27 15:17:27 -05:00
parent 8086156fed
commit ab61beed29
1 changed files with 2 additions and 2 deletions

View File

@ -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... ")