1
0
mirror of https://github.com/docker/cli.git synced 2026-01-18 08:21:31 +03:00

remove redundant colon introduced by mistake

Signed-off-by: allencloud <allen.sun@daocloud.io>
Upstream-commit: 2c8cac3bd6
Component: cli
This commit is contained in:
allencloud
2017-02-13 10:16:57 +08:00
parent 1737a52139
commit 7448bd1807

View File

@@ -29,7 +29,7 @@ func (cli *Client) VolumesPrune(ctx context.Context, pruneFilters filters.Args)
defer ensureReaderClosed(serverResp)
if err := json.NewDecoder(serverResp.body).Decode(&report); err != nil {
return report, fmt.Errorf("Error retrieving volume prune report:: %v", err)
return report, fmt.Errorf("Error retrieving volume prune report: %v", err)
}
return report, nil