PR#1096: cli: fix typos in *-notification error msg
Merges #1096 https://pagure.io/koji/pull-request/1096 Fixes: #1092 https://pagure.io/koji/issue/1092 Typo in add-notification error msg Fixes: #1093 https://pagure.io/koji/issue/1093 Typo in edit-notification error msg
This commit is contained in:
commit
55888578df
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