We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b47b17c commit 75b38cbCopy full SHA for 75b38cb
nipype/pipeline/engine/nodes.py
@@ -522,7 +522,8 @@ def _load_resultfile(self, cwd):
522
# Was this pickle created with Python 2.x?
523
pickle.load(pkl_file, fix_imports=True, encoding='utf-8')
524
logger.warn('Successfully loaded pickle in compatibility mode')
525
- except (traits.TraitError, AttributeError, ImportError) as err:
+ except (traits.TraitError, AttributeError, ImportError,
526
+ EOFError) as err:
527
if isinstance(err, (AttributeError, ImportError)):
528
attribute_error = True
529
logger.debug('attribute error: %s probably using '
0 commit comments