From 186c49409c841bd2bba50ea8629ec214a7fb9627 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 17 May 2013 12:53:32 -0700 Subject: Fix flake8 errors in anticipation of flake8. Change-Id: I7c713f95eb974d5998d2be50722df7d6f64a234e --- nova/api/openstack/compute/contrib/floating_ips.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/api') diff --git a/nova/api/openstack/compute/contrib/floating_ips.py b/nova/api/openstack/compute/contrib/floating_ips.py index d2cf99431..a698e049c 100644 --- a/nova/api/openstack/compute/contrib/floating_ips.py +++ b/nova/api/openstack/compute/contrib/floating_ips.py @@ -244,7 +244,7 @@ class FloatingIPActionController(wsgi.Controller): if not fixed_address: fixed_address = fixed_ips[0]['address'] - if len(fixed_ips) > 1: + if len(fixed_ips) > 1: msg = _('multiple fixed_ips exist, using the first: %s') LOG.warning(msg, fixed_address) -- cgit