File "/usr/sbin/ceph-disk", line 303, in command_check_call
LOG.info('Running command: %s' % ' '.join(arguments))
TypeError: sequence item 2: expected string, NoneType found
Backport: firefly
Signed-off-by: Sage Weil <sage@redhat.com>
otherwise.
"""
arguments = _get_command_executable(arguments)
- LOG.info('Running command: %s' % ' '.join(arguments))
+ LOG.info('Running command: %s', ' '.join(arguments))
return subprocess.check_call(arguments)