# HG changeset patch # User Kim Alvefur # Date 1444243329 -7200 # Node ID d85ddd3e588ade505ec18cb355df3bd50049b63b # Parent effd909d05b0ea07d339d4a42f0c292a4f520a5e mod_munin: Fix syntax error diff -r effd909d05b0 -r d85ddd3e588a mod_munin/mod_munin.lua --- 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));