Skip to content

Commit

Permalink
🐛 [-bug] Fixed incorrect warning display in ExecuteTasks
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrownell committed Apr 25, 2024
1 parent 79e916b commit 07299a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dbrownell_Common/ExecuteTasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -945,7 +945,7 @@ def OnTaskComplete(
for color_on, count, suffix in [
(success_on, success_count, "succeeded"),
(error_on, error_count, "failed"),
(warning_on, warning_count, inflect.no("warning", warning_count)),
(warning_on, warning_count, inflect.plural_verb("warning", warning_count)),
]:
if count == 0:
content = "0"
Expand Down

0 comments on commit 07299a6

Please sign in to comment.