Fix output of Schedule Delete

It should be `\n` and not `/n/` when doing the printf on a schedule delete.

Signed-off-by: Jon Whitcraft <jwhitcraft@mac.com>
pull/1120/head
Jon Whitcraft 2018-12-06 15:00:38 -05:00
parent f1deff8ffc
commit f983f4fb21
No known key found for this signature in database
GPG Key ID: 146DBC6A816B8815
2 changed files with 2 additions and 1 deletions

View File

@ -0,0 +1 @@
Fixed the newline output when deleting a schedule.

View File

@ -110,7 +110,7 @@ func Run(o *cli.DeleteOptions) error {
errs = append(errs, errors.WithStack(err))
continue
}
fmt.Printf("Schedule deleted: %v/n", s.Name)
fmt.Printf("Schedule deleted: %v\n", s.Name)
}
return kubeerrs.NewAggregate(errs)
}