Skip to content

Commit 5aefcef

Browse files
author
Shoshana Berleant
committed
little fixes *whistle*
1 parent 8f7b783 commit 5aefcef

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

doc/users/install.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,6 @@ or::
8383

8484
nosetests --with-doctest nipype
8585

86-
or::
87-
88-
nosetests --with-doctest nipype
89-
9086
A successful test run should complete in a few minutes and end with
9187
something like::
9288

nipype/algorithms/rapidart.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -362,10 +362,7 @@ def _detect_outliers_core(self, imgfile, motionfile, runidx, cwd=None):
362362
nim = funcs.concat_images(images)
363363

364364
# compute global intensity signal
365-
try:
366-
(x, y, z, timepoints) = nim.shape
367-
except ValueError as ve:
368-
raise NipypeInterfaceError(ve, 'Check dimensions of input image; 4-D input required.')
365+
(x, y, z, timepoints) = nim.shape
369366

370367
data = nim.get_data()
371368
affine = nim.affine

0 commit comments

Comments
 (0)