We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents baa81e0 + dd42939 commit f3fa9dbCopy full SHA for f3fa9db
1 file changed
src/backend/expungeservice/form_filling.py
@@ -85,7 +85,7 @@ def build_zip(record_summary: RecordSummary, user_information: Dict[str, str]) -
85
)
86
87
# Douglas and Umatilla counties explicitly want the "Order" part of the old forms too.
88
- if case.summary.location in ["douglas", "umatilla"]:
+ if case.summary.location.lower() in ["douglas", "umatilla"]:
89
pdf_with_warnings = OldFormFilling._build_pdf_for_case(case_without_deleted_charges, user_information)
90
if pdf_with_warnings:
91
pdf, internal_file_name, warnings = pdf_with_warnings
0 commit comments