Skip to content

Commit

Permalink
Merge pull request #59 from jjhelmus/fix_bruker_reorder
Browse files Browse the repository at this point in the history
BUG: Bruker sub-matices only reordered once
  • Loading branch information
jjhelmus committed Oct 28, 2016
2 parents 82c4ab4 + 3ee5d7e commit ca8dc08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nmrglue/fileio/bruker.py
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@ def read_pdata_binary(filename, shape=None, submatrix_shape=None, big=True):
else:
try:
data = reorder_submatrix(data, shape, submatrix_shape)
return dic, reorder_submatrix(data, shape, submatrix_shape)
return dic, data
except:
warn('unable to reorder data')
return dic, data
Expand Down

0 comments on commit ca8dc08

Please sign in to comment.