From b9177c2f2617b3c6d57b89096062b5483e396f9c Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 12 Jan 2020 14:15:34 -0500 Subject: [PATCH] Add word Job to task ID output --- client-cli/cli_lib/provisioner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client-cli/cli_lib/provisioner.py b/client-cli/cli_lib/provisioner.py index 4425e2f7..daa64ee9 100644 --- a/client-cli/cli_lib/provisioner.py +++ b/client-cli/cli_lib/provisioner.py @@ -1179,7 +1179,7 @@ def format_list_task(task_data_raw): task_list_output = [] # Determine optimal column widths - task_id_length = 3 + task_id_length = 7 task_type_length = 7 task_vm_name_length = 5 task_vm_profile_length = 8 @@ -1233,7 +1233,7 @@ VM: {task_vm_name: <{task_vm_name_length}} \ task_vm_start_length=task_vm_start_length, bold=ansiprint.bold(), end_bold=ansiprint.end(), - task_id='ID', + task_id='Job ID', task_type='Status', task_worker='Worker', task_vm_name='Name',