# HG changeset patch # User Kim Alvefur # Date 1488757888 -3600 # Node ID 9ec8289f6bb27f1c4173d035090603cbd9fc2e36 # Parent 98b9b9ded29a13c2a4d7006246386e95890881a2 mod_storage_xmlarchive: Break long line [luacheck] diff -r 98b9b9ded29a -r 9ec8289f6bb2 mod_storage_xmlarchive/mod_storage_xmlarchive.lua --- a/mod_storage_xmlarchive/mod_storage_xmlarchive.lua Mon Mar 06 00:46:07 2017 +0100 +++ b/mod_storage_xmlarchive/mod_storage_xmlarchive.lua Mon Mar 06 00:51:28 2017 +0100 @@ -48,7 +48,8 @@ local offset = ok and err or 0; local id = day .. "-" .. hmac_sha256(username.."@"..day.."+"..offset, data, true):sub(-16); - ok, err = dm.list_append(username.."@"..day, module.host, self.store, { id = id, when = dt.datetime(when), with = with, offset = offset, length = #data }); + ok, err = dm.list_append(username.."@"..day, module.host, self.store, + { id = id, when = dt.datetime(when), with = with, offset = offset, length = #data }); if ok and first_of_day then ok, err = dm.list_append(username, module.host, self.store, day); end