Skip to content

Commit

Permalink
Fix for dcm4chee incompatibality with DateRanges containing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mdebic committed Dec 3, 2024
1 parent 882cab4 commit 80d61f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adit/core/utils/dicom_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def _build_date_time_datetime_range(
):
start_date = str(vr_class(start)) if start else ""
end_date = str(vr_class(end)) if end else ""
return f"{start_date} - {end_date}"
return f"{start_date}-{end_date}"


def _convert_to_dicom_date_time_datetime(
Expand Down

0 comments on commit 80d61f2

Please # to comment.