diff options
author | baude <bbaude@redhat.com> | 2018-11-27 10:33:19 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2018-11-28 09:26:24 -0600 |
commit | 61d4db480650c57d383990750ed87990e903f4da (patch) | |
tree | 493a2836ecaf14ef708cf53eb96c292db37c1152 /cmd/podman/commit.go | |
parent | effd63d6d5c2541f09745261a1e9205fa531e526 (diff) | |
download | podman-61d4db480650c57d383990750ed87990e903f4da.tar.gz podman-61d4db480650c57d383990750ed87990e903f4da.tar.bz2 podman-61d4db480650c57d383990750ed87990e903f4da.zip |
Fix golang formatting issues
Whe running unittests on newer golang versions, we observe failures with some
formatting types when no declared correctly.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/commit.go')
-rw-r--r-- | cmd/podman/commit.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/commit.go b/cmd/podman/commit.go index b09c6b0d9..02ede4f73 100644 --- a/cmd/podman/commit.go +++ b/cmd/podman/commit.go @@ -95,7 +95,7 @@ func commitCmd(c *cli.Context) error { for _, change := range c.StringSlice("change") { splitChange := strings.Split(strings.ToUpper(change), "=") if !util.StringInSlice(splitChange[0], libpod.ChangeCmds) { - return errors.Errorf("invalid syntax for --change ", change) + return errors.Errorf("invalid syntax for --change: %s", change) } } } |