formatting

This commit is contained in:
Michael Quigley 2023-01-09 17:51:41 -05:00
parent b1de849714
commit 3093bd230d
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

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