diff options
| author | Zuul <zuul@review.openstack.org> | 2018-06-06 04:11:31 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2018-06-06 04:11:31 +0000 |
| commit | 11c5bb887fb4ffff24eb7ad60bec7be79148775e (patch) | |
| tree | db756e3f258430db73cd408f3e794a3355012dbb | |
| parent | ae30659ce95e9eb1ffc0ca16a196cc2bdc93f2d9 (diff) | |
| parent | 7a13754eebb15a3c7fa507ad1d58e3c4460e302c (diff) | |
| download | python-swiftclient-11c5bb887fb4ffff24eb7ad60bec7be79148775e.tar.gz | |
Merge "Use a valid default for auth_version"
| -rw-r--r-- | swiftclient/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swiftclient/client.py b/swiftclient/client.py index 5961744..4518808 100644 --- a/swiftclient/client.py +++ b/swiftclient/client.py @@ -565,7 +565,7 @@ def get_auth_keystone(auth_url, user, key, os_options, **kwargs): # Legacy default if not set if auth_version is None: - auth_version = 'v2.0' + auth_version = '2' ksclient, exceptions = _import_keystone_client(auth_version) try: |
