diff options
author | cristinapauna <cristina.pauna@enea.com> | 2016-09-16 15:03:15 +0300 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-09-16 12:16:29 +0000 |
commit | 855c3ea4cf5825033c37284fdf31b363ac06e4c2 (patch) | |
tree | 7803cfcbc498271f7180d9c34a7b3fed2fe3b780 /utils | |
parent | e90f1a3d5ad5d5b85a6e6e5de5caf8c9641f39b6 (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>
(cherry picked from commit 56920a1c54164f692298ecb6289c08e37d9245a6)
Diffstat (limited to 'utils')
-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 d6a1ff4b4..80815943b 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 |