Fix the call to _printTaskInfo in handle_resubmit
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
This commit is contained in:
parent
76d6082742
commit
b511c6599f
1 changed files with 1 additions and 1 deletions
|
|
@ -788,7 +788,7 @@ def handle_resubmit(goptions, session, args):
|
||||||
taskID = int(args[0])
|
taskID = int(args[0])
|
||||||
if not options.quiet:
|
if not options.quiet:
|
||||||
print("Resubmitting the following task:")
|
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)
|
newID = session.resubmitTask(taskID)
|
||||||
if not options.quiet:
|
if not options.quiet:
|
||||||
print("Resubmitted task %s as new task %s" % (taskID, newID))
|
print("Resubmitted task %s as new task %s" % (taskID, newID))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue