changeset 2644:0f44d04d0d18

mod_mam: Ignore long log lines [luacheck]
author Kim Alvefur <zash@zash.se>
date Thu, 23 Mar 2017 14:31:01 +0100
parents 777d07e0cd73
children cae371544ff5
files mod_mam/mod_mam.lua
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mod_mam/mod_mam.lua	Thu Mar 23 09:19:52 2017 +0000
+++ b/mod_mam/mod_mam.lua	Thu Mar 23 14:31:01 2017 +0100
@@ -44,6 +44,7 @@
 local archive = assert(module:open_store(archive_store, "archive"));
 
 if archive.name == "null" or not archive.find then
+	-- luacheck: ignore 631
 	if not archive.find then
 		module:log("debug", "Attempt to open archive storage returned a valid driver but it does not seem to implement the storage API");
 		module:log("debug", "mod_%s does not support archiving", archive._provided_by or archive.name and "storage_"..archive.name.."(?)" or "<unknown>");