Skip to content

Commit

Permalink
Fix missing reference to incompleted tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMarkinPPC committed Mar 27, 2024
1 parent 3b09ded commit 9ce41d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terka/presentations/console/printer.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def print_project(self, entities, print_options, kwargs=None):
'name': str(entity.name),
'description': entity.description,
'status': entity.status.name,
'open_tasks': str(len(open_tasks)),
'open_tasks': str(len(incompleted_tasks)),
}
printable_elements = [
value for key, value in printable_row.items()
Expand Down

0 comments on commit 9ce41d2

Please sign in to comment.