From ba67278fadb1b79cddf4458be4afe6a605120641 Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Sun, 6 Mar 2022 17:19:47 -0400 Subject: [PATCH] fix: dont print types of args in appendPath --- api.go | 1 - 1 file changed, 1 deletion(-) diff --git a/api.go b/api.go index 787f881..417104c 100644 --- a/api.go +++ b/api.go @@ -265,7 +265,6 @@ func hlalias(L *lua.LState) int { func hlappendPath(L *lua.LState) int { // check if dir is a table or a string arg := L.Get(1) - fmt.Println(arg.Type()) if arg.Type() == lua.LTTable { arg.(*lua.LTable).ForEach(func(k lua.LValue, v lua.LValue) { appendPath(v.String())