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 5ab2fa0 commit dc89681Copy full SHA for dc89681
nipype/pipeline/engine/workflows.py
@@ -410,7 +410,7 @@ def write_graph(self,
410
base_dir = op.join(base_dir, self.name)
411
else:
412
base_dir = os.getcwd()
413
- base_dir = os.makedirs(base_dir, exist_ok=True)
+ os.makedirs(base_dir, exist_ok=True)
414
if graph2use in ['hierarchical', 'colored']:
415
if self.name[:1].isdigit(): # these graphs break if int
416
raise ValueError('{} graph failed, workflow name cannot begin '
0 commit comments