Skip to content

Commit bb7a7d7

Browse files
committed
fix: looseversion stringify parameter
1 parent eb59f7f commit bb7a7d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/pipeline/plugins/ipythonx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
IPython_not_loaded = False
1010
try:
1111
from IPython import __version__ as IPyversion
12-
if LooseVersion(IPyversion) < LooseVersion(0.11):
12+
if LooseVersion(IPyversion) < LooseVersion('0.11'):
1313
from IPython.kernel.contexts import ConnectionRefusedError
1414
except ImportError:
1515
IPython_not_loaded = True

0 commit comments

Comments
 (0)