Merge pull request #12055 from UtahDave/develop

pylint fixes.
This commit is contained in:
Pedro Algarvio 2014-04-17 00:19:05 +01:00
commit e31abb8390

View File

@ -89,5 +89,5 @@ def __exec_cmd(*args, **kwargs):
' --{0} {1}'.format(k, v) for k, v in kwargs.items() if not k.startswith('__')]
)
cmd_exec = "{0} {1}".format(cmd, cmd_args)
log.debug("ChefCommand: %s" % cmd_exec)
log.debug("ChefCommand: %s", cmd_exec)
return __salt__['cmd.run'](cmd_exec)