Merge "Replaces client_kwargs by empty dict in ckclient/shell.py"

This commit is contained in:
Jenkins 2016-08-29 10:20:59 +00:00 committed by Gerrit Code Review
commit 9554c9e440
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ class CloudkittyShell(object):
"either --os-auth-url or via "
"env[OS_AUTH_URL]")
client_kwargs = vars(args)
client_kwargs = {}
client_kwargs.update(self.auth_plugin.opts)
client_kwargs['auth_plugin'] = self.auth_plugin
client = ckclient.get_client(api_version, **client_kwargs)