diff --git a/.mailmap b/.mailmap index 6d3ec76d0..7bdd06e5e 100644 --- a/.mailmap +++ b/.mailmap @@ -4,3 +4,4 @@ lawrancejing Jiajun Liu Zhongyue Luo +Kun Huang diff --git a/neutron/plugins/cisco/db/n1kv_db_v2.py b/neutron/plugins/cisco/db/n1kv_db_v2.py index 6db40fff8..dbc7d334b 100644 --- a/neutron/plugins/cisco/db/n1kv_db_v2.py +++ b/neutron/plugins/cisco/db/n1kv_db_v2.py @@ -991,7 +991,7 @@ def delete_profile_binding(tenant_id, profile_id): db_session.delete(binding) except c_exc.ProfileTenantBindingNotFound: LOG.debug(_("Profile-Tenant binding missing for profile ID " - "%(profile_id)s and tenant ID %(tenant_id)") % + "%(profile_id)s and tenant ID %(tenant_id)s") % {"profile_id": profile_id, "tenant_id": tenant_id}) return diff --git a/neutron/plugins/mlnx/agent/eswitch_neutron_agent.py b/neutron/plugins/mlnx/agent/eswitch_neutron_agent.py index 637c8f582..e05fac15b 100644 --- a/neutron/plugins/mlnx/agent/eswitch_neutron_agent.py +++ b/neutron/plugins/mlnx/agent/eswitch_neutron_agent.py @@ -134,8 +134,8 @@ class EswitchManager(object): elif network_type == constants.TYPE_IB: LOG.debug(_("creating IB Network")) else: - LOG.error(_("Unknown network type %(network_type) " - "for network %(network_id)"), + LOG.error(_("Unknown network type %(network_type)s " + "for network %(network_id)s"), {'network_type': network_type, 'network_id': network_id}) return diff --git a/neutron/plugins/nec/common/ofc_client.py b/neutron/plugins/nec/common/ofc_client.py index 6df8b4f03..4bc49b42a 100644 --- a/neutron/plugins/nec/common/ofc_client.py +++ b/neutron/plugins/nec/common/ofc_client.py @@ -97,7 +97,7 @@ class OFCClient(object): return data else: LOG.warning(_("Operation on OFC failed: " - "status=%(status), detail=%(detail)"), + "status=%(status)s, detail=%(detail)s"), {'status': res.status, 'detail': data}) params = {'reason': _("Operation on OFC failed"), 'status': res.status}