cmd/client: lowercase error

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2016-09-27 10:14:46 +02:00
parent 5a922dbdf6
commit 56f2b34def
No known key found for this signature in database
GPG key ID: B2BEAD150DE936B9

View file

@ -74,7 +74,7 @@ var stopPodSandboxCommand = cli.Command{
err = StopPodSandbox(client, context.String("id"))
if err != nil {
return fmt.Errorf("Stopping the pod sandbox failed: %v", err)
return fmt.Errorf("stopping the pod sandbox failed: %v", err)
}
return nil
},