Skip to content

Commit 44da8ae

Browse files
BF: Fix error message
1 parent d33a05a commit 44da8ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nibabel/ecat.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -611,8 +611,8 @@ def _get_oriented_data(self, raw_data, orientation=None):
611611
elif orientation == 'radiological':
612612
orientation = patient_orient_radiological[0]
613613
else:
614-
raise ValueError('orientation should be None,\
615-
neurological or radiological')
614+
raise ValueError('orientation should be None, '
615+
'neurological or radiological')
616616

617617
if orientation in patient_orient_neurological:
618618
raw_data = raw_data[::-1, ::-1, ::-1]

0 commit comments

Comments
 (0)