Merge "Fix broken formatting of processutils.execute log statement"

This commit is contained in:
Jenkins 2014-07-01 02:25:20 +00:00 committed by Gerrit Code Review
commit 5c274c0fa6
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ def execute(*cmd, **kwargs):
attempts -= 1
try:
LOG.log(loglevel, 'Running cmd (subprocess): %s',
' '.join(logging.mask_password(cmd)))
logging.mask_password(' '.join(cmd)))
_PIPE = subprocess.PIPE # pylint: disable=E1101
if os.name == 'nt':