summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsteve8918 <steve8918@gmail.com>2016-06-17 10:44:06 -0700
committerDana Powers <dana.powers@gmail.com>2016-06-17 10:44:06 -0700
commit1e532c674067e2399fa014151a2e8e49caa4fe58 (patch)
treeeec6a93f79af134184a342fcb4fdfc2492f13b1b
parent81860eeea1449678fb2d42082e08d1bc40cf1f30 (diff)
downloadkafka-python-1e532c674067e2399fa014151a2e8e49caa4fe58.tar.gz
tweak spelling mistake (#719)
-rw-r--r--kafka/errors.py2
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