Merge pull request #1120 from jwhitcraft/schedule-delete-fix
Fix output of Schedule Deletepull/1127/head
commit
59ca9a3974
|
@ -0,0 +1 @@
|
|||
Fixed the newline output when deleting a schedule.
|
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue