Add missing new line after "No events."

This commit is contained in:
Ilya Dmitrichenko
2016-09-07 22:12:31 +01:00
parent 5b79fcc791
commit 8821825a6d

View File

@@ -2129,7 +2129,7 @@ func getPodsTotalRequestsAndLimits(podList *api.PodList) (reqs map[api.ResourceN
func DescribeEvents(el *api.EventList, w io.Writer) {
if len(el.Items) == 0 {
fmt.Fprint(w, "No events.")
fmt.Fprint(w, "No events.\n")
return
}
sort.Sort(SortableEvents(el.Items))