Line 64:
Line 64:
function Utils.test_context(frame)
function Utils.test_context(frame)
local context = Utils.context(frame)
local context = Utils.context(frame)
−
return "arg = " + (context.arg or "?") + " @ " + (context.pagename or "?")
+
return "arg = " .. (context.arg or "?") .. " @ " .. (context.pagename or "?")
end
end
return Utils
return Utils