diff --git a/tui/messages.go b/tui/messages.go index 27e49240..d76073cd 100644 --- a/tui/messages.go +++ b/tui/messages.go @@ -23,5 +23,5 @@ func Error(msg string, err error) { } func Warning(msg string, v ...interface{}) { - _, _ = fmt.Fprintf(os.Stderr, "%v: "+msg, append([]interface{}{WarningLabel}, v...)) + _, _ = fmt.Fprintf(os.Stderr, "%v: "+msg+"\n", append([]interface{}{WarningLabel}, v...)) }