From 2752d4f6086d91dc463417a3f432cb3f79b0e621 Mon Sep 17 00:00:00 2001 From: Yuming Zhu Date: Sep 13 2018 10:24:54 +0000 Subject: cli: fix typos in *-notification error msg --- diff --git a/cli/koji_cli/commands.py b/cli/koji_cli/commands.py index 7341490..64ac1e6 100644 --- a/cli/koji_cli/commands.py +++ b/cli/koji_cli/commands.py @@ -7192,7 +7192,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 @@ -7267,7 +7267,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']