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.
os.getcwd()
1 parent afa74b7 commit 77e5257Copy full SHA for 77e5257
nipype/pipeline/engine/nodes.py
@@ -434,7 +434,8 @@ def run(self, updatehash=False):
434
# Changing back to cwd is probably not necessary
435
# but this makes sure there's somewhere to change to.
436
cwd = os.path.split(outdir)[0]
437
- logger.debug('Current folder does not exist, changing to "%s" instead.', cwd)
+ logger.debug('Current folder "%s" does not exist, changing to "%s" instead.',
438
+ os.getenv('PWD', 'unknown'), cwd)
439
440
os.chdir(outdir)
441
try:
0 commit comments