diff options
author | steve8918 <steve8918@gmail.com> | 2016-06-17 10:44:06 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2016-06-17 10:44:06 -0700 |
commit | 1e532c674067e2399fa014151a2e8e49caa4fe58 (patch) | |
tree | eec6a93f79af134184a342fcb4fdfc2492f13b1b /kafka/errors.py | |
parent | 81860eeea1449678fb2d42082e08d1bc40cf1f30 (diff) | |
download | kafka-python-1e532c674067e2399fa014151a2e8e49caa4fe58.tar.gz |
tweak spelling mistake (#719)
Diffstat (limited to 'kafka/errors.py')
-rw-r--r-- | kafka/errors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/errors.py b/kafka/errors.py index 6960810..df035c4 100644 --- a/kafka/errors.py +++ b/kafka/errors.py @@ -87,7 +87,7 @@ class InvalidMessageError(BrokerResponseError): class UnknownTopicOrPartitionError(BrokerResponseError): errno = 3 - message = 'UNKNOWN_TOPIC_OR_PARTITON' + message = 'UNKNOWN_TOPIC_OR_PARTITION' description = ('This request is for a topic or partition that does not' ' exist on this broker.') invalid_metadata = True |