summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMahendra M <mahendra.m@gmail.com>2013-06-28 13:07:10 +0530
committerMahendra M <mahendra.m@gmail.com>2013-06-28 13:07:10 +0530
commit6b76d9d682b2b7c6280dda84dbad07e6d856de0e (patch)
tree81f20c3d154c4d33a23449f2131dbf3c7c16d436
parentc2a49c1370536e7155c34bb93fa14a23f367d5f4 (diff)
downloadkafka-python-6b76d9d682b2b7c6280dda84dbad07e6d856de0e.tar.gz
Fix markup in README
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index c6e3e63..5449148 100644
--- a/README.md
+++ b/README.md
@@ -55,7 +55,6 @@ producer.send("key1", "some message")
producer.send("key2", "this methode")
producer = KeyedProducer(kafka, "my-topic", partitioner=RoundRobinPartitioner)
-```
# Multiprocess consumer
# This will split the number of partitions among two processes
@@ -70,6 +69,7 @@ for message in consumer:
for message in consumer.get_messages(count=5, block=True, timeout=4):
print(message)
+```
## Low level