Commit 8821825a authored by Ilya Dmitrichenko's avatar Ilya Dmitrichenko

Add missing new line after "No events."

parent 5b79fcc7
...@@ -2129,7 +2129,7 @@ func getPodsTotalRequestsAndLimits(podList *api.PodList) (reqs map[api.ResourceN ...@@ -2129,7 +2129,7 @@ func getPodsTotalRequestsAndLimits(podList *api.PodList) (reqs map[api.ResourceN
func DescribeEvents(el *api.EventList, w io.Writer) { func DescribeEvents(el *api.EventList, w io.Writer) {
if len(el.Items) == 0 { if len(el.Items) == 0 {
fmt.Fprint(w, "No events.") fmt.Fprint(w, "No events.\n")
return return
} }
sort.Sort(SortableEvents(el.Items)) sort.Sort(SortableEvents(el.Items))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment