Skip to content

Commit

Permalink
fix typo in dockerimages - repositor(ies -> y)
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett committed Jan 6, 2016
1 parent 549c283 commit 36af0d5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dockerstatus/dockerstatus.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
package dockerstatus

import (
"github.com/CiscoCloud/distributive/tabular"
"os/exec"
"strings"

"github.com/CiscoCloud/distributive/tabular"
)

// DockerImageRepositories returns a slice of the names of the Docker images
Expand All @@ -22,7 +23,7 @@ func DockerImageRepositories() (images []string, err error) {
}
}
table := tabular.ProbabalisticSplit(string(out))
return tabular.GetColumnByHeader("REPOSITORIES", table), nil
return tabular.GetColumnByHeader("REPOSITORY", table), nil
}

// RunningContainers returns a list of names of running docker containers
Expand Down

0 comments on commit 36af0d5

Please sign in to comment.