diff options
author | Zack Dever <zack.dever@rd.io> | 2015-12-02 16:23:01 -0800 |
---|---|---|
committer | Zack Dever <zack.dever@rd.io> | 2015-12-02 17:43:15 -0800 |
commit | 16f61547787e9cb5be855ec1c4391b3b56765ab8 (patch) | |
tree | 90390cac4773c5d29de8dda109b08447a4db9a15 /kafka/consumer/kafka.py | |
parent | 3e28b42e6691b864b6f940034a4ccdce0b69d406 (diff) | |
download | kafka-python-16f61547787e9cb5be855ec1c4391b3b56765ab8.tar.gz |
new pylint disables for pylint 1.5.1
tested locally with `pylint --rcfile=pylint.rc -E kafka test`. should
pass travis builds.
Diffstat (limited to 'kafka/consumer/kafka.py')
-rw-r--r-- | kafka/consumer/kafka.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/consumer/kafka.py b/kafka/consumer/kafka.py index 2141101..21b2bf6 100644 --- a/kafka/consumer/kafka.py +++ b/kafka/consumer/kafka.py @@ -661,7 +661,7 @@ class KafkaConsumer(object): # Otherwise we should re-raise the upstream exception # b/c it typically includes additional data about # the request that triggered it, and we do not want to drop that - raise + raise # pylint: disable-msg=E0704 (offset, ) = self.get_partition_offsets(topic, partition, request_time_ms, max_num_offsets=1) |