Skip to content

Commit

Permalink
fixed up ID escape
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Feb 9, 2024
1 parent 6506e6a commit aa0ffd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xnat_ingest/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def get_id(field):
f"Multiple values for '{field}' tag found within scans in session: "
f"{session_dicom_series}"
)
id_ = cls.id_escape_re("", id_)
id_ = cls.id_escape_re.sub("", id_)
return id_

scans = []
Expand Down

0 comments on commit aa0ffd3

Please sign in to comment.