summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcristinapauna <cristina.pauna@enea.com>2016-09-16 15:03:15 +0300
committerMorgan Richomme <morgan.richomme@orange.com>2016-09-16 12:16:29 +0000
commit855c3ea4cf5825033c37284fdf31b363ac06e4c2 (patch)
tree7803cfcbc498271f7180d9c34a7b3fed2fe3b780
parente90f1a3d5ad5d5b85a6e6e5de5caf8c9641f39b6 (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)
-rwxr-xr-xutils/openstack_utils.py2
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