Code Review
/
functest.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
e183c8d
)
Fix formatting error
65/21265/1
author
cristinapauna
<cristina.pauna@enea.com>
Fri, 16 Sep 2016 12:03:15 +0000
(15:03 +0300)
committer
cristinapauna
<cristina.pauna@enea.com>
Fri, 16 Sep 2016 12:03:48 +0000
(15:03 +0300)
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>
utils/openstack_utils.py
patch
|
blob
|
history
diff --git
a/utils/openstack_utils.py
b/utils/openstack_utils.py
index
e61d064
..
da9bc5a
100755
(executable)
--- 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