Skip to content

Commit 5b29a5c

Browse files
authored
Merge pull request #1574 from oesteban/fix/DipyBreaksBuildDocs
[FIX] Dipy logged an error if not found
2 parents 7275f84 + 2de9ced commit 5b29a5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/dipy/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class DipyBaseInterface(BaseInterface):
3636
"""
3737
def __init__(self, **inputs):
3838
if no_dipy():
39-
IFLOGGER.error('dipy was not found')
39+
IFLOGGER.warn('dipy was not found')
4040
# raise ImportError('dipy was not found')
4141
super(DipyBaseInterface, self).__init__(**inputs)
4242

0 commit comments

Comments
 (0)