Skip to content

Commit 5b5547b

Browse files
committed
[skip ci] Merge branch 'fix/multi-proc-cwd' of github.com:oesteban/nipype into fix/multi-proc-cwd
2 parents 0e2abb1 + af6c708 commit 5b5547b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

nipype/pipeline/engine/nodes.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def __init__(self,
172172
self.synchronize = synchronize
173173
self.itersource = itersource
174174
self.overwrite = overwrite
175-
self.parameterization = None
175+
self.parameterization = []
176176
self.input_source = {}
177177
self.plugin_args = {}
178178

@@ -242,9 +242,10 @@ def n_procs(self, value):
242242

243243
@property
244244
def itername(self):
245+
"""Name for expanded iterable"""
245246
itername = self._id
246247
if self._hierarchy:
247-
itername = self._hierarchy + '.' + self._id
248+
itername = '%s.%s' % (self._hierarchy, self._id)
248249
return itername
249250

250251
def output_dir(self):

0 commit comments

Comments
 (0)