Typo in ElasticsearchException

This change is internal so it shouldn't affect existing code
This commit is contained in:
Honza Kral
2013-09-28 15:51:24 +02:00
parent 5774ccc4b0
commit 7243ae6413
+4 -4
View File
@@ -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):