diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-04 17:49:48 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-04 17:49:48 +0100 |
commit | 014168ff18ff0216c649ca687523ab96768a9b0d (patch) | |
tree | 91aa73ddb7089baef93b2e47966f53c5c945ed52 /core/storagemanager.lua | |
parent | c284110cb40cb2347f82e974f76eb6bc6927e946 (diff) | |
download | prosody-014168ff18ff0216c649ca687523ab96768a9b0d.tar.gz prosody-014168ff18ff0216c649ca687523ab96768a9b0d.zip |
core: Split some very long lines [luacheck]
Diffstat (limited to 'core/storagemanager.lua')
-rw-r--r-- | core/storagemanager.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/storagemanager.lua b/core/storagemanager.lua index 319046b9..75cb8d0f 100644 --- a/core/storagemanager.lua +++ b/core/storagemanager.lua @@ -72,7 +72,8 @@ local function get_storage_config(host) end end if found_sql2 then - log("error", "The temporary 'sql2' storage module has now been renamed to 'sql', please update your config file: https://prosody.im/doc/modules/mod_storage_sql2"); + log("error", "The temporary 'sql2' storage module has now been renamed to 'sql', " + .."please update your config file: https://prosody.im/doc/modules/mod_storage_sql2"); end return storage_config; end @@ -180,7 +181,8 @@ local function purge(user, host) if driver.purge then purged[driver_name] = driver:purge(user); else - log("warn", "Storage driver %s does not support removing all user data, you may need to delete it manually", driver_name); + log("warn", "Storage driver %s does not support removing all user data, " + .."you may need to delete it manually", driver_name); end end end |