Fix elasticsearch.exceptions.__all__ (#621)

This commit is contained in:
Victor K
2017-07-14 16:50:39 +02:00
committed by Honza Král
parent 620afc667f
commit 57362aa8c7
+1 -1
View File
@@ -1,7 +1,7 @@
__all__ = [
'ImproperlyConfigured', 'ElasticsearchException', 'SerializationError',
'TransportError', 'NotFoundError', 'ConflictError', 'RequestError', 'ConnectionError',
'SSLError', 'ConnectionTimeout'
'SSLError', 'ConnectionTimeout', 'AuthenticationException', 'AuthorizationException'
]
class ImproperlyConfigured(Exception):