diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-08-06 08:01:52 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-08-06 08:01:52 +0000 |
| commit | 3692a2a91afe4a8b6ba1c084c3ec865f92f0047e (patch) | |
| tree | b9e4be25dbf30a336c1e28d9546d7884be6cdb06 /openstackclient/compute | |
| parent | 63f8018fe370f8908cd4d3da3d76ca0a4693a88d (diff) | |
| parent | 6a15f90daed6514e30b4af0ebb52c7864acaafcc (diff) | |
| download | python-openstackclient-3692a2a91afe4a8b6ba1c084c3ec865f92f0047e.tar.gz | |
Merge "osc-lib: shell"
Diffstat (limited to 'openstackclient/compute')
| -rw-r--r-- | openstackclient/compute/client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/compute/client.py b/openstackclient/compute/client.py index 1583676a..4cc3be98 100644 --- a/openstackclient/compute/client.py +++ b/openstackclient/compute/client.py @@ -64,7 +64,7 @@ def make_client(instance): if ext.name == "list_extensions"] # Remember interface only if it is set - kwargs = utils.build_kwargs_dict('endpoint_type', instance._interface) + kwargs = utils.build_kwargs_dict('endpoint_type', instance.interface) client = nova_client.Client( version, @@ -72,7 +72,7 @@ def make_client(instance): extensions=extensions, http_log_debug=http_log_debug, timings=instance.timing, - region_name=instance._region_name, + region_name=instance.region_name, **kwargs ) |
