Skip to content

Commit 27448bc

Browse files
logger argument
1 parent a307845 commit 27448bc

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

nipype/pipeline/plugins/multiproc.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,8 @@ def __init__(self, plugin_args=None):
140140
# total no. of processes allowed on all gpus
141141
if self.n_gpu_procs > self.n_gpus_visible:
142142
logger.info(
143-
'Total number of GPUs proc requested (%d) exceeds the available number of GPUs (%d) on the system. Using requested GPU slots at your own risk!'
144-
% (self.n_gpu_procs, self.n_gpus_visible)
145-
)
143+
'Total number of GPUs proc requested (%d) exceeds the available number of GPUs (%d) on the system. Using requested GPU slots at your own risk!',
144+
self.n_gpu_procs, self.n_gpus_visible)
146145

147146
# Instantiate different thread pools for non-daemon processes
148147
logger.debug(

0 commit comments

Comments
 (0)