Skip to content

Commit

Permalink
Fix acquisition time format in LightProcedure class
Browse files Browse the repository at this point in the history
  • Loading branch information
jomasator2 committed Apr 9, 2024
1 parent 138a615 commit 528c673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xnat2mids/procedures/light_procedures.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def control_image(self, folder_conversion, mids_session_path, dict_json, session
value.append({
"run":png_files,
"series_number": dict_json.get("SeriesNumber"),
"adquisition_time":datetime.fromisoformat(acquisition_date_time),
"adquisition_time":acquisition_date_time,
"folder_mids": mids_session_path})
self.run_dict[key]=value

Expand Down

0 comments on commit 528c673

Please sign in to comment.