remove redundant colon introduced by mistake

Signed-off-by: allencloud <allen.sun@daocloud.io>
This commit is contained in:
allencloud 2017-02-13 10:16:57 +08:00
parent c110abfa9f
commit df64bc3ed0
1 changed files with 1 additions and 1 deletions

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