fix command/kv_import.go help text (#3387)

This commit is contained in:
wuxin 2017-08-10 15:17:37 +08:00 committed by Frank Schröder
parent 48b1afeb26
commit 792a535c87
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ Usage: consul kv import [DATA]
Or it can be read from stdin using the "-" symbol:
$ cat filename.json | consul kv import config/program/license -
$ cat filename.json | consul kv import -
Alternatively the data may be provided as the final parameter to the command,
though care must be taken with regards to shell escaping.
@ -116,7 +116,7 @@ func (c *KVImportCommand) dataFromArgs(args []string) (string, error) {
return "", errors.New("Missing DATA argument")
case 1:
default:
return "", fmt.Errorf("Too many arguments (expected 1 or 2, got %d)", len(args))
return "", fmt.Errorf("Too many arguments (expected 1, got %d)", len(args))
}
data := args[0]