diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-05-11 13:44:15 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-05-11 13:44:15 +0000 |
| commit | d07b424bed6c462b6075f9a3f7ae066a0bb4d49c (patch) | |
| tree | 97c71589aa33441a5336348eb78ef707fe0a6df4 | |
| parent | b2d58a8e1348c42c6d8f7caf5acbb7b3b4b4d7e7 (diff) | |
| parent | 030dedf9e8beb89784ab112977716f9b96073195 (diff) | |
| download | python-cinderclient-d07b424bed6c462b6075f9a3f7ae066a0bb4d49c.tar.gz | |
Merge "Change api_version to self.api_version"
| -rw-r--r-- | cinderclient/v2/client.py | 2 | ||||
| -rw-r--r-- | cinderclient/v3/client.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cinderclient/v2/client.py b/cinderclient/v2/client.py index fea18ad..49b9651 100644 --- a/cinderclient/v2/client.py +++ b/cinderclient/v2/client.py @@ -115,7 +115,7 @@ class Client(object): auth_system=auth_system, auth_plugin=auth_plugin, session=session, - api_version=api_version, + api_version=self.api_version, **kwargs) def authenticate(self): diff --git a/cinderclient/v3/client.py b/cinderclient/v3/client.py index 18adb3c..ae10ebc 100644 --- a/cinderclient/v3/client.py +++ b/cinderclient/v3/client.py @@ -115,7 +115,7 @@ class Client(object): auth_system=auth_system, auth_plugin=auth_plugin, session=session, - api_version=api_version, + api_version=self.api_version, **kwargs) def authenticate(self): |
