diff options
author | Vetoshkin Nikita <nekto0n@yandex-team.ru> | 2013-10-03 17:56:29 +0400 |
---|---|---|
committer | David Arthur <mumrah@gmail.com> | 2013-10-03 19:37:13 -0400 |
commit | e87cddef1b9a8360d94ffae1e7fd3c82790cd2a6 (patch) | |
tree | 84448ee4eb4639c46e6505c9f53e70965c054aa6 /kafka/client.py | |
parent | f833050f0af1f9aba0df84770f824714cec61728 (diff) | |
download | kafka-python-e87cddef1b9a8360d94ffae1e7fd3c82790cd2a6.tar.gz |
style: fix whitespaces
Diffstat (limited to 'kafka/client.py')
-rw-r--r-- | kafka/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/client.py b/kafka/client.py index be61e91..ae489e1 100644 --- a/kafka/client.py +++ b/kafka/client.py @@ -22,7 +22,7 @@ class KafkaClient(object): def __init__(self, host, port, bufsize=4096, client_id=CLIENT_ID): # We need one connection to bootstrap - self.bufsize = bufsize + self.bufsize = bufsize self.client_id = client_id self.conns = { # (host, port) -> KafkaConnection (host, port): KafkaConnection(host, port, bufsize) |