summaryrefslogtreecommitdiff
path: root/keystoneclient/auth/identity/generic/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'keystoneclient/auth/identity/generic/base.py')
-rw-r--r--keystoneclient/auth/identity/generic/base.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/keystoneclient/auth/identity/generic/base.py b/keystoneclient/auth/identity/generic/base.py
index 85207ac..98680ef 100644
--- a/keystoneclient/auth/identity/generic/base.py
+++ b/keystoneclient/auth/identity/generic/base.py
@@ -20,7 +20,7 @@ import six.moves.urllib.parse as urlparse
from keystoneclient import _discover
from keystoneclient.auth.identity import base
from keystoneclient import exceptions
-from keystoneclient.i18n import _, _LW
+from keystoneclient.i18n import _
LOG = logging.getLogger(__name__)
@@ -140,9 +140,9 @@ class BaseGenericPlugin(base.BaseIdentityPlugin):
except (exceptions.DiscoveryFailure,
exceptions.HTTPError,
exceptions.ConnectionError):
- LOG.warning(_LW('Discovering versions from the identity service '
- 'failed when creating the password plugin. '
- 'Attempting to determine version from URL.'))
+ LOG.warning('Discovering versions from the identity service '
+ 'failed when creating the password plugin. '
+ 'Attempting to determine version from URL.')
url_parts = urlparse.urlparse(self.auth_url)
path = url_parts.path.lower()