Skip to content

Commit

Permalink
Support semicolon separated for export (in addition to existing comma…
Browse files Browse the repository at this point in the history
…, tab, new line separation)
  • Loading branch information
TheMadBug committed Jul 10, 2024
1 parent db48dbf commit 07d1021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classification/views/classification_export_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def internal_lab_download(request):
if record_filter_str:
all_qs: list[Q] = []
has_errors = False
for part in re.split('[,\n\t]', record_filter_str):
for part in re.split('[;,\n\t]', record_filter_str):
# handle each part here so we can validate that there's 1+ record found for each filter
if part := part.strip():
try:
Expand Down

0 comments on commit 07d1021

Please sign in to comment.