Merge pull request #13154 from coolljt0725/typo_remove_redundant_dot

Minor typo: remove redundant dot in error message in runconfig/parse.go
This commit is contained in:
Alexander Morozov 2015-05-13 15:24:01 -07:00
commit 39a74950fe

View file

@ -1085,7 +1085,7 @@ func (cmd *FlagSet) ReportError(str string, withHelp bool) {
str += ". See '" + os.Args[0] + " " + cmd.Name() + " --help'"
}
}
fmt.Fprintf(cmd.Out(), "docker: %s.\n", str)
fmt.Fprintf(cmd.Out(), "docker: %s\n", str)
os.Exit(1)
}