aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/export.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/export.lua b/src/export.lua
index b0b9809..12bb56e 100644
--- a/src/export.lua
+++ b/src/export.lua
@@ -10,7 +10,7 @@ local function table_to_str(tbl, indent)
local src = "{"
for k, v in pairs(tbl) do
- print(k, v)
+ -- print(k, v)
if type(k) == "function" or type(v) == "function" then
error("Cannot export function " .. tostring(k) .. " = " .. tostring(v))
end