From c1dd675c8ca32f5e8c258b5629187c55bf5af4a0 Mon Sep 17 00:00:00 2001 From: zhurong Date: Thu, 19 Sep 2019 23:45:28 -0700 Subject: [PATCH] Fix the wrong doc use oslo_conf param Change-Id: I95e4515cae03718cf06c93f329b45f0816d07edf --- openstack/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack/connection.py b/openstack/connection.py index 17a9ef158..61c954d18 100644 --- a/openstack/connection.py +++ b/openstack/connection.py @@ -131,7 +131,7 @@ construct a Connection with the ``CONF`` object and an authenticated Session. conn = connection.Connection( session=session, - oslo_config=CONF) + oslo_conf=CONF) From existing CloudRegion -------------------------