Skip to content

Commit

Permalink
Update task count multiplier string
Browse files Browse the repository at this point in the history
  • Loading branch information
aarontp authored Oct 25, 2023
1 parent 20c12c5 commit a26e1c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion turbinia/api/cli/turbinia_client/helpers/formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def __init__(self, request_data: dict):
# Generate task list with counts
for task in unique_tasks:
if task_counter[task] > 1:
filtered_tasks.append(f'{task_counter[task]} x {task}')
filtered_tasks.append(f'{task} ({task_counter[task]}x)')
else:
filtered_tasks.append(task)

Expand Down

0 comments on commit a26e1c1

Please sign in to comment.