From 7243ae64132d721286cc873dac32265e1b4ceeed Mon Sep 17 00:00:00 2001 From: Honza Kral Date: Sat, 28 Sep 2013 15:45:43 +0200 Subject: [PATCH] Typo in ElasticsearchException This change is internal so it shouldn't affect existing code --- elasticsearch/exceptions.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/elasticsearch/exceptions.py b/elasticsearch/exceptions.py index 47191aa5..be45fb10 100644 --- a/elasticsearch/exceptions.py +++ b/elasticsearch/exceptions.py @@ -1,17 +1,17 @@ -__all__ = ['ImproperlyConfigured', 'ElastiSearchException', 'SerializationError', 'TransportError', 'NotFoundError'] +__all__ = ['ImproperlyConfigured', 'ElasticsearchException', 'SerializationError', 'TransportError', 'NotFoundError'] class ImproperlyConfigured(Exception): pass -class ElastiSearchException(Exception): +class ElasticsearchException(Exception): pass -class SerializationError(ElastiSearchException): +class SerializationError(ElasticsearchException): pass -class TransportError(ElastiSearchException): +class TransportError(ElasticsearchException): """ Exception raised when ES returns a non-OK (>=400) HTTP status code. """ @property def status_code(self):