# HG changeset patch # User Kim Alvefur # Date 1491068737 -7200 # Node ID 7ebaefc88b3dc68f9bd72b9a79afd4a7a0d2199d # Parent 58d6c2ab3d16406ba6f87ebba60152e05f4a862f mod_storage_sql: Split long lines [luacheck] diff -r 58d6c2ab3d16 -r 7ebaefc88b3d plugins/mod_storage_sql.lua --- a/plugins/mod_storage_sql.lua Sat Apr 01 19:45:20 2017 +0200 +++ b/plugins/mod_storage_sql.lua Sat Apr 01 19:45:37 2017 +0200 @@ -524,8 +524,10 @@ 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;