Correct import of keystoneauth1 session

keystoneclient.session has been long deprecated in favor of
keystoneauth1.session. This change corrects the import to use
keystoneauth1.session instead of keystoneclient.session.

Change-Id: I4a0992c5dd171975fd561d4472cb0c1d24592e8a
This commit is contained in:
Gage Hugo 2017-09-13 15:59:49 -05:00
parent cb0fd7801f
commit 6e99a751b2
1 changed files with 1 additions and 1 deletions

View File

@ -19,9 +19,9 @@ import hashlib
import sys
import botocore
from keystoneauth1 import session as keystone_session
from keystoneclient import access as keystone_access
from keystoneclient.auth.identity import access as keystone_identity_access
from keystoneclient import session as keystone_session
from oslo_config import cfg
from oslo_context import context as common_context
from oslo_log import log as logging