Skip to content

Commit efb8ce9

Browse files
BF: Fix error message
1 parent 0bb649e commit efb8ce9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

nibabel/ecat.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -611,8 +611,7 @@ 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, neurological or radiological')
616615

617616
if orientation in patient_orient_neurological:
618617
raw_data = raw_data[::-1, ::-1, ::-1]

0 commit comments

Comments
 (0)