Skip to content

Commit b10062f

Browse files
committed
Fixed small bug in plugins/base.py: string inf was supposed to be a number in debug logger
1 parent ccf2b41 commit b10062f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/pipeline/plugins/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def _send_procs_to_workers(self, updatehash=False, graph=None):
281281

282282
if len(jobids) > 0:
283283
# send all available jobs
284-
logger.info('Pending[%d] Submitting[%d] jobs Slots[%d]',
284+
logger.info('Pending[%d] Submitting[%d] jobs Slots[%s]',
285285
num_jobs, len(jobids[:slots]), slots or 'inf')
286286

287287
for jobid in jobids[:slots]:

0 commit comments

Comments
 (0)