Fix regex error

This commit is contained in:
teknomunk
2025-01-11 07:24:49 -06:00
parent 02dc6e4d91
commit c37964a3b1

@ -13,7 +13,7 @@ local WHITESPACE = {
}
function string.strip(str)
str = str:gsub("^%s+","")
return str:gsub("%s$+","")
return str:gsub("%s+$","")
end
function read_mod_configuration(file)