diff --git a/scripts/check_site.lua b/scripts/check_site.lua index 0bac55de23babe738353f619530cf6ab9a70ca85..d4a9b571a61d90e0f23bcdaddd63d9f8a84cc9dc 100644 --- a/scripts/check_site.lua +++ b/scripts/check_site.lua @@ -119,13 +119,9 @@ local function conf_src(path) end local function var_error(path, val, msg) - if type(val) == 'string' then - val = string.format('%q', val) - end - local found = 'unset' if val ~= nil then - found = string.format('%s (a %s value)', tostring(val), type(val)) + found = string.format('%s (a %s value)', format(val), type(val)) end config_error(conf_src(path), 'expected %s to %s, but it is %s', path_to_string(path), msg, found)