diff options
author | Andre Araujo <asdaraujo@gmail.com> | 2017-11-06 15:59:57 -0800 |
---|---|---|
committer | Jeff Widman <jeff@jeffwidman.com> | 2018-02-21 13:30:12 -0800 |
commit | 54d64105c0fec604140b581fd0b0fb3f7ac54b50 (patch) | |
tree | 64338e77aa67ece100f964f058fd8391c54734d9 | |
parent | 0c0c7eae13f3b2b8e3ed7c443adef39cb6802a67 (diff) | |
download | kafka-python-54d64105c0fec604140b581fd0b0fb3f7ac54b50.tar.gz |
Update string representation of SimpleClient
-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 22918ac..369dc97 100644 --- a/kafka/client.py +++ b/kafka/client.py @@ -404,7 +404,7 @@ class SimpleClient(object): return [responses[tp] for tp in original_ordering] def __repr__(self): - return '<KafkaClient client_id=%s>' % (self.client_id) + return '<SimpleClient client_id=%s>' % (self.client_id) def _raise_on_response_error(self, resp): |