2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-02 03:33:22 +00:00

fix: remove extra newline in error message

This commit is contained in:
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

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