]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fix a typo in _schedule_network method
authorSergey Kolekonov <skolekonov@mirantis.com>
Mon, 25 May 2015 15:11:35 +0000 (18:11 +0300)
committerSergey Kolekonov <skolekonov@mirantis.com>
Mon, 25 May 2015 15:15:04 +0000 (18:15 +0300)
Fix the small typo which prevented from writing correct DHCP agent id to logs

Change-Id: Id8a872815f7cb2ba68ff1c674f17777da7858562

neutron/db/agentschedulers_db.py

index 6f40ee37511678924f6bac7d2385566b7dc80b87..bac33a78f6bd7bae33fb25ce05797f11d432c748 100644 (file)
@@ -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})