diff options
author | AntumDeluge <antumdeluge@gmail.com> | 2017-07-08 19:19:27 -0700 |
---|---|---|
committer | Diego MartÃnez <kaeza@users.noreply.github.com> | 2017-07-10 19:06:37 -0300 |
commit | 7b818cb4af527069937e90aac86636366b9e64df (patch) | |
tree | 0e1a9e8eb54497d824d0acde2ecca9f157945f03 | |
parent | d01a9c666f2d9f44a35562154ff86c7ce20e3e65 (diff) |
Add missing closing brace at end of log function
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |