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

Merge pull request #31543 from chawlanikhil24/master

Replaced "err" with  "nil" & added a comment
This commit is contained in:
Sebastiaan van Stijn
2017-03-06 15:11:14 +01:00
committed by GitHub

View File

@@ -30,7 +30,7 @@ func SetupRootCommand(rootCmd *cobra.Command) {
// docker/docker/cli error messages
func FlagErrorFunc(cmd *cobra.Command, err error) error {
if err == nil {
return err
return nil
}
usage := ""