From 7b818cb4af527069937e90aac86636366b9e64df Mon Sep 17 00:00:00 2001 From: AntumDeluge Date: Sat, 8 Jul 2017 19:19:27 -0700 Subject: [PATCH] Add missing closing brace at end of log function --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index b6cb1e9..0778a73 100644 --- a/init.lua +++ b/init.lua @@ -69,7 +69,7 @@ function intllib.Getter(modname) local loc = info and info.short_src..":"..info.currentline minetest.log("deprecated", "intllib.Getter is deprecated." .." Please use intllib.make_gettext_pair instead." - ..(info and " (called from "..loc..")" or "") + ..(info and " (called from "..loc..")" or "")) return Getter(modname) end