cli: fix "at least" typo in help text
"at lease" -> "at least"
This commit is contained in:
parent
95efcce013
commit
686f647ac4
1 changed files with 2 additions and 2 deletions
|
|
@ -4959,7 +4959,7 @@ def handle_edit_tag_inheritance(goptions, session, args):
|
|||
(options, args) = parser.parse_args(args)
|
||||
|
||||
if len(args) < 1:
|
||||
parser.error(_("This command takes at lease one argument: a tag name or ID"))
|
||||
parser.error(_("This command takes at least one argument: a tag name or ID"))
|
||||
assert False # pragma: no cover
|
||||
|
||||
if len(args) > 3:
|
||||
|
|
@ -5042,7 +5042,7 @@ def handle_remove_tag_inheritance(goptions, session, args):
|
|||
(options, args) = parser.parse_args(args)
|
||||
|
||||
if len(args) < 1:
|
||||
parser.error(_("This command takes at lease one argument: a tag name or ID"))
|
||||
parser.error(_("This command takes at least one argument: a tag name or ID"))
|
||||
assert False # pragma: no cover
|
||||
|
||||
if len(args) > 3:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue