Merge pull request #1120 from jwhitcraft/schedule-delete-fix

Fix output of Schedule Delete
pull/1127/head
Andy Goldstein 2018-12-06 15:38:31 -05:00 committed by GitHub
commit 59ca9a3974
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)
}