From 35ecffcbac18292f9e14f75b6b83523e097e4703 Mon Sep 17 00:00:00 2001 From: David Kennedy Date: Tue, 31 Dec 2024 07:32:19 -0500 Subject: [PATCH] fixed mapping of election org types --- src/registrar/utility/csv_export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/registrar/utility/csv_export.py b/src/registrar/utility/csv_export.py index 70043ded9..af2fadeb9 100644 --- a/src/registrar/utility/csv_export.py +++ b/src/registrar/utility/csv_export.py @@ -544,7 +544,7 @@ class DomainExport(BaseExport): portfolio__isnull=False, portfolio__organization_type__isnull=False, is_election_board=True, - then=Concat(F("portfolio__organization_type"), Value(" - Election")), + then=Concat(F("portfolio__organization_type"), Value("_election")), ), # When portfolio is present and is_election_board is False or None When(