summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorboucherv <valentin.boucher@orange.com>2016-09-01 15:04:42 +0200
committervalentin boucher <valentin.boucher@orange.com>2016-09-01 13:19:03 +0000
commit2236c2a3498e62fad98de0ad533612bf82bab9e3 (patch)
treed799952620e8aeb1d1e9776311c7589a5c607a1e /utils
parent0c167f3b2cb6050a151bf801f48f41360521eb50 (diff)
Fix some bugs
Change-Id: Iaf0859775933ba09cbbe170af3ce4ed1e6d3e9a1 Signed-off-by: boucherv <valentin.boucher@orange.com> (cherry picked from commit 26f493bf3bb06a0ceb959294397ff653b92da202)
Diffstat (limited to 'utils')
-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 bc718bb2b..21e00d9b9 100755
--- a/utils/openstack_utils.py
+++ b/utils/openstack_utils.py
@@ -1077,7 +1077,7 @@ def create_tenant(keystone_client, tenant_name, tenant_description):
enabled=True)
return tenant.id
except Exception, e:
- logger.error("Error [create_tenant(cinder_client, '%s', '%s')]: %s"
+ logger.error("Error [create_tenant(keystone_client, '%s', '%s')]: %s"
% (tenant_name, tenant_description, e))
return None