From 36af0d5219e67560083b6b22dd020389b18527fa Mon Sep 17 00:00:00 2001 From: siddharthist Date: Tue, 5 Jan 2016 22:09:09 -0600 Subject: [PATCH] fix typo in dockerimages - repositor(ies -> y) --- dockerstatus/dockerstatus.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dockerstatus/dockerstatus.go b/dockerstatus/dockerstatus.go index 6939308..ba9dc57 100644 --- a/dockerstatus/dockerstatus.go +++ b/dockerstatus/dockerstatus.go @@ -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 @@ -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