From 3d6017f87e68f04beb2fb9ee7eb581bcdf471fd1 Mon Sep 17 00:00:00 2001 From: XeonSquared Date: Tue, 1 Aug 2023 15:55:16 +1000 Subject: [PATCH] clean up some less than ideal commits --- module/io.lua | 2 +- module/syslog.lua | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/module/io.lua b/module/io.lua index 0592c3e..ff1c9e1 100644 --- a/module/io.lua +++ b/module/io.lua @@ -34,7 +34,7 @@ end function print(...) -- Writes each argument to the default output stream, separated by space. for k,v in ipairs({...}) do - io.write(tostring(v).." ") + io.write(tostring(v).."\t") end io.write("\n") end diff --git a/module/syslog.lua b/module/syslog.lua index e80549d..f28e7ec 100644 --- a/module/syslog.lua +++ b/module/syslog.lua @@ -1,4 +1,3 @@ ---#include "module/ocelot-debug.lua" do syslog = {} syslog.emergency = 0