Software /
code /
prosody-modules
Changeset
1898:d85ddd3e588a
mod_munin: Fix syntax error
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 07 Oct 2015 20:42:09 +0200 |
parents | 1897:effd909d05b0 |
children | 1899:ceb594a14a18 |
files | mod_munin/mod_munin.lua |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_munin/mod_munin.lua Wed Oct 07 20:41:20 2015 +0200 +++ b/mod_munin/mod_munin.lua Wed Oct 07 20:42:09 2015 +0200 @@ -93,9 +93,9 @@ elseif host == "*" then host = nil; end - if sect:find"^mod_measure_.") then + if sect:find("^mod_measure_.") then sect = sect:sub(13); - elseif sect:find"^mod_statistics_.") then + elseif sect:find("^mod_statistics_.") then sect = sect:sub(16); end key = clean_fieldname(s_format("%s_%s_%s", host or "global", sect, typ));