From 9a8af1499ca425366d934487469d9977fae7fe5f Mon Sep 17 00:00:00 2001 From: Dana Powers Date: Thu, 7 Jan 2016 17:57:24 -0800 Subject: Fix KafkaClient->SimpleClient references --- kafka/consumer/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kafka/consumer/base.py') diff --git a/kafka/consumer/base.py b/kafka/consumer/base.py index a90038f..2059d92 100644 --- a/kafka/consumer/base.py +++ b/kafka/consumer/base.py @@ -94,7 +94,7 @@ class Consumer(object): def fetch_last_known_offsets(self, partitions=None): if self.group is None: - raise ValueError('KafkaClient.group must not be None') + raise ValueError('SimpleClient.group must not be None') if partitions is None: partitions = self.client.get_partition_ids_for_topic(self.topic) -- cgit v1.2.1