From 57362aa8c7c739cc46d57f380f984ab972e6d08f Mon Sep 17 00:00:00 2001 From: Victor K Date: Fri, 14 Jul 2017 17:50:39 +0300 Subject: [PATCH] Fix elasticsearch.exceptions.__all__ (#621) --- elasticsearch/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elasticsearch/exceptions.py b/elasticsearch/exceptions.py index 76978a86..5085c6f6 100644 --- a/elasticsearch/exceptions.py +++ b/elasticsearch/exceptions.py @@ -1,7 +1,7 @@ __all__ = [ 'ImproperlyConfigured', 'ElasticsearchException', 'SerializationError', 'TransportError', 'NotFoundError', 'ConflictError', 'RequestError', 'ConnectionError', - 'SSLError', 'ConnectionTimeout' + 'SSLError', 'ConnectionTimeout', 'AuthenticationException', 'AuthorizationException' ] class ImproperlyConfigured(Exception):