diff options
Diffstat (limited to 'lua/mvc.lua')
-rwxr-xr-x | lua/mvc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/mvc.lua b/lua/mvc.lua index be78fd4..3c7ec54 100755 --- a/lua/mvc.lua +++ b/lua/mvc.lua @@ -349,7 +349,7 @@ auto_view = function(viewtable, viewlibrary, pageinfo, session) require("json") print(json.encode(viewtable)) elseif pageinfo.viewtype == "stream" then - print(tostring(viewtable.value)) + io.write(viewtable.value) elseif pageinfo.viewtype == "serialized" then local s = require("session") print(s.serialize("result", viewtable)) |