From 686f647ac434aa391d86236e7172c74133fd2ffe Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Nov 02 2018 21:54:14 +0000 Subject: cli: fix "at least" typo in help text "at lease" -> "at least" --- diff --git a/cli/koji_cli/commands.py b/cli/koji_cli/commands.py index 0b66be7..8f83191 100644 --- a/cli/koji_cli/commands.py +++ b/cli/koji_cli/commands.py @@ -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: