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 b75a7ce commit c100772Copy full SHA for c100772
nipype/pipeline/engine/utils.py
@@ -291,7 +291,7 @@ def load_resultfile(results_file, resolve=True):
291
raise FileNotFoundError(results_file)
292
293
result = loadpkl(results_file)
294
- if resolve and result.outputs:
+ if resolve and hasattr(result,"outputs") and result.outputs:
295
try:
296
outputs = result.outputs.get()
297
except TypeError: # This is a Bunch
0 commit comments