From 98381196c3985912311b4e705e1b41c31664228f Mon Sep 17 00:00:00 2001 From: Chris Zubak-Skees Date: Tue, 22 Feb 2022 21:30:30 +0000 Subject: [PATCH] fix: remove refs to dismiss while adding withdrawn Issue #3296 --- hypha/apply/funds/workflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypha/apply/funds/workflow.py b/hypha/apply/funds/workflow.py index 2e85333520..97e4267f8e 100644 --- a/hypha/apply/funds/workflow.py +++ b/hypha/apply/funds/workflow.py @@ -1244,7 +1244,7 @@ def get_dismissed_statuses(): def get_withdrawn_statuses(): withdrawn_statuses = set() for phase_name, phase in PHASES: - if phase.display_name == "Dismissed": + if phase.display_name == "Withdrawn": withdrawn_statuses.add(phase_name) return withdrawn_statuses