1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

api/client fix golint errors/warnings

Addresses #14756

Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com>
This commit is contained in:
root 2015-07-21 00:55:30 +00:00 committed by Srini Brahmaroutu
parent dfcdde4d98
commit 929f2c2f40
10 changed files with 34 additions and 19 deletions

View file

@ -2,7 +2,6 @@ package client
import (
"errors"
"io"
"net/url"
"os"
@ -23,7 +22,7 @@ func (cli *DockerCli) CmdSave(args ...string) error {
cmd.ParseFlags(args, true)
var (
output io.Writer = cli.out
output = cli.out
err error
)
if *outfile != "" {