summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntumDeluge <antumdeluge@gmail.com>2017-07-08 19:19:27 -0700
committerDiego Martínez <kaeza@users.noreply.github.com>2017-07-10 19:06:37 -0300
commit7b818cb4af527069937e90aac86636366b9e64df (patch)
tree0e1a9e8eb54497d824d0acde2ecca9f157945f03
parentd01a9c666f2d9f44a35562154ff86c7ce20e3e65 (diff)
Add missing closing brace at end of log function
-rw-r--r--init.lua2
1 files changed, 1 insertions, 1 deletions
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