diff options
author | cristinapauna <cristina.pauna@enea.com> | 2016-09-16 15:03:15 +0300 |
---|---|---|
committer | cristinapauna <cristina.pauna@enea.com> | 2016-09-16 15:03:48 +0300 |
commit | 56920a1c54164f692298ecb6289c08e37d9245a6 (patch) | |
tree | af99e3dea5fd2627423f73cf68dffe0159eb816d | |
parent | e183c8d521cd65f694b6b5b8c283272b39edffd3 (diff) |
Fix formatting error
This is a fix for https://jira.opnfv.org/browse/FUNCTEST-477
The script terminated due to incomplete formatting
Change-Id: I580750e2fe6b1b8957ab017c64d44b9693760860
Signed-off-by: cristinapauna <cristina.pauna@enea.com>
-rwxr-xr-x | utils/openstack_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/openstack_utils.py b/utils/openstack_utils.py index e61d06434..da9bc5a1b 100755 --- a/utils/openstack_utils.py +++ b/utils/openstack_utils.py @@ -389,7 +389,7 @@ def delete_floating_ip(nova_client, floatingip_id): nova_client.floating_ips.delete(floatingip_id) return True except Exception, e: - logger.error("Error [delete_floating_ip(nova_client, '%s')]:" + logger.error("Error [delete_floating_ip(nova_client, '%s')]: %s" % (floatingip_id, e)) return False |