summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Widman <jeff@jeffwidman.com>2017-10-06 23:19:17 -0700
committerGitHub <noreply@github.com>2017-10-06 23:19:17 -0700
commitf12ff950ad2131f1bd6f5fc6bf8afc6ecd5d6628 (patch)
tree3b92c54fbe94e60ae0b18668735b8f2cd262607e
parent411bc08f214b7afc36f11bde2047096c06467088 (diff)
downloadkafka-python-f12ff950ad2131f1bd6f5fc6bf8afc6ecd5d6628.tar.gz
Fix typo
-rw-r--r--kafka/conn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/conn.py b/kafka/conn.py
index 304045f..dbe212a 100644
--- a/kafka/conn.py
+++ b/kafka/conn.py
@@ -902,7 +902,7 @@ class BrokerConnection(object):
# The logic here is to check the list of supported request versions
# in reverse order. As soon as we find one that works, return it
test_cases = [
- # format (<broker verion>, <needed struct>)
+ # format (<broker version>, <needed struct>)
((0, 11, 0), MetadataRequest[4]),
((0, 10, 2), OffsetFetchRequest[2]),
((0, 10, 1), MetadataRequest[2]),