Fixed issue with getting engine args

doc_update
Joey Hines 2018-06-30 11:21:37 -05:00
parent 316a160457
commit 933b7c7ba0
1 changed files with 1 additions and 3 deletions

View File

@ -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 ******************************************************************