From b511c6599f802fe34e1a5dc37626ddd22df528e4 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Fri, 14 Jul 2017 20:42:10 +0200 Subject: [PATCH] Fix the call to _printTaskInfo in handle_resubmit Signed-off-by: Patrick Uiterwijk --- cli/koji_cli/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/koji_cli/commands.py b/cli/koji_cli/commands.py index 2a6a367f..b09b9203 100644 --- a/cli/koji_cli/commands.py +++ b/cli/koji_cli/commands.py @@ -788,7 +788,7 @@ def handle_resubmit(goptions, session, args): taskID = int(args[0]) if not options.quiet: print("Resubmitting the following task:") - _printTaskInfo(session, taskID, 0, goptions.topdir, False, True) + _printTaskInfo(session, taskID, goptions.topdir, 0, False, True) newID = session.resubmitTask(taskID) if not options.quiet: print("Resubmitted task %s as new task %s" % (taskID, newID))