]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commit
Correct LOG.debug use
authorCedric Brandily <zzelle@gmail.com>
Mon, 21 Jul 2014 14:45:38 +0000 (16:45 +0200)
committerCedric Brandily <zzelle@gmail.com>
Mon, 21 Jul 2014 15:26:32 +0000 (17:26 +0200)
commit8a5c7c660b3f94fcecb1be3d40dae354a2fc6a56
treea2219ffa8bb5d885a4de2682693eaba4ce7629ee
parente693d5be177184264d1647919466fdc5a5ebd26d
Correct LOG.debug use

The commit b3202c3283597de031572e0ede082237487d8110 used:

  LOG.debug("...%(key1)s...", key1=value1)

which  is not supported, this change ues instead:

  LOG.debug("...%(key1)s...", {"key1": value1})

Change-Id: I9bd63c27ca8acf89284399fda8cd74c82906113b
neutron/plugins/ml2/drivers/helpers.py
neutron/tests/unit/ml2/test_helpers.py