From ef45bafb54102576603877ff81790071d85f6b3c Mon Sep 17 00:00:00 2001 From: sammyette <38820196+TorchedSammy@users.noreply.github.com> Date: Tue, 8 Jun 2021 17:24:54 -0400 Subject: [PATCH] fix: remove extra newline in error message --- lua.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua.go b/lua.go index 110746a..892e456 100644 --- a/lua.go +++ b/lua.go @@ -83,7 +83,7 @@ func RunConfig(confpath string) { err := l.DoFile(confpath) if err != nil { fmt.Fprintln(os.Stderr, err, - "\nAn error has occured while loading your config! Falling back to minimal default config.\n") + "\nAn error has occured while loading your config! Falling back to minimal default config.") l.DoString(minimalconf) }