From: Sergey Kolekonov Date: Mon, 25 May 2015 15:11:35 +0000 (+0300) Subject: Fix a typo in _schedule_network method X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=c79d68a7ed347539026acf4c2347740adc617580;p=openstack-build%2Fneutron-build.git Fix a typo in _schedule_network method Fix the small typo which prevented from writing correct DHCP agent id to logs Change-Id: Id8a872815f7cb2ba68ff1c674f17777da7858562 --- diff --git a/neutron/db/agentschedulers_db.py b/neutron/db/agentschedulers_db.py index 6f40ee375..bac33a78f 100644 --- a/neutron/db/agentschedulers_db.py +++ b/neutron/db/agentschedulers_db.py @@ -213,7 +213,7 @@ class DhcpAgentSchedulerDbMixin(dhcpagentscheduler return for agent in agents: LOG.info(_LI("Adding network %(net)s to agent " - "%(agent)%s on host %(host)s"), + "%(agent)s on host %(host)s"), {'net': network_id, 'agent': agent.id, 'host': agent.host})