cli: fix typos in *-notification error msg
This commit is contained in:
parent
2a18090ede
commit
36d1a10497
1 changed files with 2 additions and 2 deletions
|
|
@ -7208,7 +7208,7 @@ def handle_add_notification(goptions, session, args):
|
|||
try:
|
||||
tag_id = session.getTagID(options.tag, strict=True)
|
||||
except koji.GenericError:
|
||||
parser.error("Uknown tag: %s" % options.tag)
|
||||
parser.error("Unknown tag: %s" % options.tag)
|
||||
else:
|
||||
tag_id = None
|
||||
|
||||
|
|
@ -7283,7 +7283,7 @@ def handle_edit_notification(goptions, session, args):
|
|||
try:
|
||||
tag_id = session.getTagID(options.tag, strict=True)
|
||||
except koji.GenericError:
|
||||
parser.error("Uknown tag: %s" % options.tag)
|
||||
parser.error("Unknown tag: %s" % options.tag)
|
||||
else:
|
||||
tag_id = old['tag_id']
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue