We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4298707 commit 3e55598Copy full SHA for 3e55598
nipype/pipeline/engine/nodes.py
@@ -452,7 +452,7 @@ def run(self, updatehash=False):
452
cached, updated = self.is_cached()
453
454
# If the node is cached, check on pklz files and finish
455
- if cached and not force_run and (updated or (not updated and updatehash)):
+ if cached and not force_run and (updated or updatehash):
456
logger.debug("Only updating node hashes or skipping execution")
457
inputs_file = op.join(outdir, "_inputs.pklz")
458
if not op.exists(inputs_file):
0 commit comments