From 933b7c7ba0ba3e9909568e5fea20f33e994e2cc5 Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Sat, 30 Jun 2018 11:21:37 -0500 Subject: [PATCH] Fixed issue with getting engine args --- Geoffrey.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Geoffrey.py b/Geoffrey.py index 0a1b1cb..d258767 100644 --- a/Geoffrey.py +++ b/Geoffrey.py @@ -220,9 +220,7 @@ def get_engine_arg(config): engine_args = '{}://{}:{}@{}:{}/{}' - engine_args.format(driver, username, password, host, port, database_name) - - return engine_args + return engine_args.format(driver, username, password, host, port, database_name) # Bot Startup ******************************************************************