fix: remove extra newline in error message

pull/60/head
sammyette 2021-06-08 17:24:54 -04:00
parent f0013096fd
commit ef45bafb54
No known key found for this signature in database
GPG Key ID: 50EE40A2809851F5
1 changed files with 1 additions and 1 deletions

2
lua.go
View File

@ -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)
}