mirror of https://github.com/Hilbis/Hilbish
fix: remove extra newline in error message
parent
f0013096fd
commit
ef45bafb54
2
lua.go
2
lua.go
|
@ -83,7 +83,7 @@ func RunConfig(confpath string) {
|
||||||
err := l.DoFile(confpath)
|
err := l.DoFile(confpath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintln(os.Stderr, err,
|
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)
|
l.DoString(minimalconf)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue