mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-03 11:45:20 +00:00
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:
1
changelogs/unreleased/1120-jwhitcraft
Normal file
1
changelogs/unreleased/1120-jwhitcraft
Normal file
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user