Skip to content

Commit

Permalink
FIX(babel): order fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
balbasty committed May 13, 2024
1 parent 1a5c38f commit c972433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nitorch/io/volumes/babel/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ def guess_format():
fimg = fmap_image.get_prepare_fileobj('wb')
default_order = getattr(
image.ImageArrayProxy, '_default_order',
getattr(image.ImageArrayProxy, 'order'))
getattr(image.ImageArrayProxy, 'order', 'F'))
array_to_file(dat, fimg, dtype,
offset=header.get_data_offset(),
order=default_order)
Expand Down

0 comments on commit c972433

Please sign in to comment.