summaryrefslogtreecommitdiffstats
path: root/nova/virt/firewall.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/virt/firewall.py')
-rw-r--r--nova/virt/firewall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/virt/firewall.py b/nova/virt/firewall.py
index 2af28d7f1..2996147c7 100644
--- a/nova/virt/firewall.py
+++ b/nova/virt/firewall.py
@@ -17,11 +17,11 @@
# License for the specific language governing permissions and limitations
# under the License.
-from nova.common import cfg
from nova import context
from nova import db
from nova import flags
from nova import log as logging
+from nova.openstack.common import cfg
from nova import utils
from nova.virt import netutils
@@ -135,7 +135,7 @@ class IptablesFirewallDriver(FirewallDriver):
self.instances[instance['id']] = instance
self.network_infos[instance['id']] = network_info
self.add_filters_for_instance(instance)
- LOG.debug(_('Filters added to the instance: %r'), instance)
+ LOG.debug(_('Filters added to instance %s'), instance['uuid'])
self.refresh_provider_fw_rules()
LOG.debug(_('Provider Firewall Rules refreshed'))
self.iptables.apply()