From bdd4d41285e98067a22d4e2b4e635561d5599e00 Mon Sep 17 00:00:00 2001 From: Tomas Kopecek Date: Tue, 8 Aug 2017 14:44:53 +0200 Subject: [PATCH] incorrect parameter for error message Related: https://pagure.io/koji/issue/543 --- cli/koji_cli/commands.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cli/koji_cli/commands.py b/cli/koji_cli/commands.py index 18d23c9e..38811f44 100644 --- a/cli/koji_cli/commands.py +++ b/cli/koji_cli/commands.py @@ -6585,8 +6585,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)