Skip to content

Commit

Permalink
Merge branch 'develop' into rework-collections
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell authored Oct 19, 2021
2 parents 8c6e71f + ede283e commit 3886b71
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion aiida/engine/processes/workchains/restart.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,10 @@ def results(self) -> Optional['ExitCode']:
output = exposed_outputs[name]
except KeyError:
if port.required:
self.report(f"required output '{name}' was not an output of {self.ctx.process_name}<{node.pk}>")
self.report(
f'required output \'{name}\' was not an output of {self.ctx.process_name}<{node.pk}> '
f'(or an incorrect class/output is being exposed).'
)
else:
self.out(name, output)

Expand Down

0 comments on commit 3886b71

Please sign in to comment.