Merge "Fix TypeError in sanity check logging format"

This commit is contained in:
Jenkins 2016-09-14 01:02:09 +00:00 committed by Gerrit Code Review
commit effa592b6c
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ def _vf_management_support(required_caps):
vf_section, cap):
is_supported = False
LOG.debug("ip link command does not support "
"vf capability '%(cap)s'", cap)
"vf capability '%(cap)s'", {'cap': cap})
except ip_link_support.UnsupportedIpLinkCommand:
LOG.exception(_LE("Unexpected exception while checking supported "
"ip link command"))