mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Remove hard coded 'docker' string from package
Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
This commit is contained in:
parent
476edba011
commit
d44e79a366
1 changed files with 1 additions and 1 deletions
|
@ -1163,7 +1163,7 @@ func (fs *FlagSet) ReportError(str string, withHelp bool) {
|
|||
str += ".\nSee '" + os.Args[0] + " " + fs.Name() + " --help'"
|
||||
}
|
||||
}
|
||||
fmt.Fprintf(fs.Out(), "docker: %s.\n", str)
|
||||
fmt.Fprintf(fs.Out(), "%s: %s.\n", os.Args[0], str)
|
||||
}
|
||||
|
||||
// Parsed reports whether fs.Parse has been called.
|
||||
|
|
Loading…
Reference in a new issue