Add missing closing brace at end of log function

This commit is contained in:
AntumDeluge 2017-07-08 19:19:27 -07:00 committed by Diego Martínez
parent d01a9c666f
commit 7b818cb4af
1 changed files with 1 additions and 1 deletions

View File

@ -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