mod_storage_sql: Split long lines [luacheck]

This commit is contained in:
Kim Alvefur 2017-04-01 19:45:37 +02:00
parent d5205416d5
commit ee705afbef

View file

@ -524,8 +524,10 @@ end
local function normalize_params(params)
return {
driver = assert(params.driver, "Configuration error: Both the SQL driver and the database need to be specified");
database = assert(normalize_database(params.driver, params.database), "Configuration error: Both the SQL driver and the database need to be specified");
driver = assert(params.driver,
"Configuration error: Both the SQL driver and the database need to be specified");
database = assert(normalize_database(params.driver, params.database),
"Configuration error: Both the SQL driver and the database need to be specified");
username = params.username;
password = params.password;
host = params.host;