Merge pull request #32092 from asalkeld/get-strange-output

Automatic merge from submit-queue

Improve the get output for completed pods

**What this PR does / why we need it**:

- rename FinishPrint() to AfterPrint()
- add a newline to separate it from the table
- remove the "objects" and ()
- assume plural

**Which issue this PR fixes** 
fixes #31160

**Special notes for your reviewer**:
None

**Release note**:
```release-note
Improve the get output for completed pods
```
This commit is contained in:
Kubernetes Submit Queue
2016-09-11 06:22:03 -07:00
committed by GitHub
5 changed files with 18 additions and 18 deletions

View File

@@ -168,7 +168,7 @@ func (t *testPrinter) HandledResources() []string {
return []string{}
}
func (t *testPrinter) FinishPrint(output io.Writer, res string) error {
func (t *testPrinter) AfterPrint(output io.Writer, res string) error {
return nil
}