diff options
| author | Monty Taylor <mordred@inaugust.com> | 2013-05-17 12:53:32 -0700 |
|---|---|---|
| committer | Monty Taylor <mordred@inaugust.com> | 2013-05-17 12:53:32 -0700 |
| commit | 186c49409c841bd2bba50ea8629ec214a7fb9627 (patch) | |
| tree | f74c630106ea5a657c5dea808a2207845e2a26c1 /nova/api | |
| parent | 1d5d58c96974a2e5742887aafb48675084fbfd48 (diff) | |
| download | nova-186c49409c841bd2bba50ea8629ec214a7fb9627.tar.gz nova-186c49409c841bd2bba50ea8629ec214a7fb9627.tar.xz nova-186c49409c841bd2bba50ea8629ec214a7fb9627.zip | |
Fix flake8 errors in anticipation of flake8.
Change-Id: I7c713f95eb974d5998d2be50722df7d6f64a234e
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/compute/contrib/floating_ips.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
