From f844c008bb4527a9b02ad52acfb590fc4a084575 Mon Sep 17 00:00:00 2001
From: Chandan Kumar <chkumar@redhat.com>
Date: Mon, 27 Mar 2017 10:16:01 +0000
Subject: [PATCH] Rename IdentityV3Client to IdentityClient

As per tempest.lib.services.identity.v3.identity_client IdentityV3Client class
is renamed to IdentityClient [1.], we need to fix the same in configtool in order
to avoid the method not found error

[1.] https://git.openstack.org/cgit/openstack/tempest/tree/tempest/lib/services/identity/v3/identity_client.py#n21

Change-Id: I02848df564f2364e18d7e89cafa46c0a868079fa
---
 config_tempest/config_tempest.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config_tempest/config_tempest.py b/config_tempest/config_tempest.py
index 8b591834..7c834424 100755
--- a/config_tempest/config_tempest.py
+++ b/config_tempest/config_tempest.py
@@ -349,7 +349,7 @@ class ClientManager(object):
                 self.identity_region, endpoint_type='adminURL',
                 **default_params)
         else:
-            self.identity = identity_v3_client.IdentityV3Client(
+            self.identity = identity_v3_client.IdentityClient(
                 _auth, conf.get_defaulted('identity', 'catalog_type'),
                 self.identity_region, endpoint_type='adminURL',
                 **default_params)