Skip to content

Commit ace7368

Browse files
committed
Removed 'Error' from logger info message when memory_profiler or psutil are not found
1 parent 1e4ce5b commit ace7368

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1292,7 +1292,7 @@ def run_command(runtime, output=None, timeout=0.01, redirect_x=False):
12921292
runtime_profile = True
12931293
except ImportError as exc:
12941294
logger.info('Unable to import packages needed for runtime profiling. '\
1295-
'Turning off runtime profiler.\nError: %s' % exc)
1295+
'Turning off runtime profiler. Reason: %s' % exc)
12961296
runtime_profile = False
12971297

12981298
# Init variables

0 commit comments

Comments
 (0)