From d1c6196a07fd133bcc77bbba7d3c802c3222a407 Mon Sep 17 00:00:00 2001 From: Tomas Kopecek Date: Aug 08 2017 12:47:02 +0000 Subject: incorrect parameter for error message Related: https://pagure.io/koji/issue/543 --- diff --git a/cli/koji_cli/commands.py b/cli/koji_cli/commands.py index 0e85b05..f7fb947 100644 --- a/cli/koji_cli/commands.py +++ b/cli/koji_cli/commands.py @@ -6598,8 +6598,7 @@ def anon_handle_download_logs(options, session, args): try: task_id = int(arg) except ValueError: - error(_("Task id must be number: %r") % task_id) - continue + error(_("Task id must be number: %r") % arg) save_logs(task_id, suboptions.match, suboptions.dir, suboptions.recurse)