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>
This commit is contained in:
Jon Whitcraft
2018-12-06 15:00:38 -05:00
parent f1deff8ffc
commit f983f4fb21
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)
}