Skip to content

Commit 3122b8e

Browse files
committed
cli/command/network: fix error-message for cancelled prune
This error-message was updated in 7c722c0, but looks like the typo was overlooked in review. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent 3349492 commit 3122b8e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cli/command/network/prune.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func runPrune(ctx context.Context, dockerCli command.Cli, options pruneOptions)
5757
return "", err
5858
}
5959
if !r {
60-
return "", errdefs.Cancelled(errors.New("network prune cancelled has been cancelled"))
60+
return "", errdefs.Cancelled(errors.New("network prune has been cancelled"))
6161
}
6262
}
6363

0 commit comments

Comments
 (0)