diff options
author | Mark Roberts <wizzat@gmail.com> | 2014-05-06 21:24:15 -0700 |
---|---|---|
committer | Mark Roberts <wizzat@gmail.com> | 2014-05-06 21:24:15 -0700 |
commit | efcf58b84214aeda6cf79319f182407cde7833a6 (patch) | |
tree | 94cbb3cc886432dc77bf09f7101982d871db0365 /kafka/util.py | |
parent | 99320fbd8c33f3b831557c507deeaf5e650ab813 (diff) | |
download | kafka-python-efcf58b84214aeda6cf79319f182407cde7833a6.tar.gz |
Attempt to fix travis build. Decrease complexity of service.py in favor of in memory logging. Address code review concerns
Diffstat (limited to 'kafka/util.py')
-rw-r--r-- | kafka/util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kafka/util.py b/kafka/util.py index 0577a88..a918234 100644 --- a/kafka/util.py +++ b/kafka/util.py @@ -1,6 +1,6 @@ -import sys -import struct import collections +import struct +import sys from threading import Thread, Event from kafka.common import BufferUnderflowError |