summaryrefslogtreecommitdiff
path: root/keystoneclient/exceptions.py
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.com>2020-03-31 12:11:21 +0200
committerAndreas Jaeger <aj@suse.com>2020-03-31 12:16:31 +0200
commite25df2943d28588ceede989a801a32cc306019f7 (patch)
tree15a7969204198cca19206d273283c8680346b640 /keystoneclient/exceptions.py
parent526350eaeeadef8c1ca5f80547c01f94342a6653 (diff)
downloadpython-keystoneclient-e25df2943d28588ceede989a801a32cc306019f7.tar.gz
Update hacking for Python3
The repo is Python 3 now, so update hacking to version 3.0 which supports Python 3. Fix problems found. Change-Id: Ic161a8f88c28d88898863e5b9d9380016fbb0d08
Diffstat (limited to 'keystoneclient/exceptions.py')
-rw-r--r--keystoneclient/exceptions.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/keystoneclient/exceptions.py b/keystoneclient/exceptions.py
index 5b06be9..034e5c9 100644
--- a/keystoneclient/exceptions.py
+++ b/keystoneclient/exceptions.py
@@ -376,6 +376,7 @@ class CMSError(Exception):
msg = _('Unable to sign or verify data.')
super(CMSError, self).__init__(msg)
+
EmptyCatalog = _exc.EmptyCatalog
"""The service catalog is empty.
@@ -398,6 +399,7 @@ An alias of :py:exc:`keystoneauth1.exceptions.discovery.VersionNotAvailable`
class MethodNotImplemented(ClientException):
"""Method not implemented by the keystoneclient API."""
+
MissingAuthPlugin = _exc.MissingAuthPlugin
"""An authenticated request is required but no plugin available.