summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openstack/common/rpc/matchmaker.py3
-rw-r--r--tox.ini2
2 files changed, 3 insertions, 2 deletions
diff --git a/openstack/common/rpc/matchmaker.py b/openstack/common/rpc/matchmaker.py
index 3d72ae7..223e970 100644
--- a/openstack/common/rpc/matchmaker.py
+++ b/openstack/common/rpc/matchmaker.py
@@ -236,7 +236,8 @@ class HeartbeatMatchMakerBase(MatchMakerBase):
self.hosts.discard(host)
self.backend_unregister(key, '.'.join((key, host)))
- LOG.info(_("Matchmaker unregistered: %s, %s" % (key, host)))
+ LOG.info(_("Matchmaker unregistered: %(key)s, %(host)s"),
+ {'key': key, 'host': host})
def start_heartbeat(self):
"""
diff --git a/tox.ini b/tox.ini
index 6efa07d..3a33326 100644
--- a/tox.ini
+++ b/tox.ini
@@ -17,7 +17,7 @@ commands =
[flake8]
show-source = True
-ignore = H201,H202,H302,H304,H306,H401,H402,H403,H404,H702
+ignore = H201,H202,H302,H304,H306,H401,H402,H403,H404
exclude = .venv,.tox,dist,doc,*.egg,.update-venv
[testenv:pep8]