mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-30 09:20:15 +02:00
Bug fix
This commit is contained in:
parent
13d0b247fe
commit
352cc96d81
1 changed files with 1 additions and 1 deletions
|
@ -922,7 +922,7 @@ class DomainRequestExport:
|
|||
# Handle the additional details field. Pipe sep.
|
||||
cisa_rep = request.get("cisa_representative_email")
|
||||
details = [cisa_rep, request.get("anything_else")]
|
||||
additional_details = " | ".join([field for field in details if field is not None])
|
||||
additional_details = " | ".join([field for field in details if field])
|
||||
|
||||
# create a dictionary of fields which can be included in output.
|
||||
# "extra_fields" are precomputed fields (generated in the DB or parsed).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue