diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2018-10-22 01:24:50 -0700 |
---|---|---|
committer | Jeff Widman <jeff@jeffwidman.com> | 2018-10-22 01:24:50 -0700 |
commit | c6d86b25be338b78c79ec9a0f20a365e67e36537 (patch) | |
tree | 356b2b35146b83407717bf6d79d2997017b67ba0 /test/test_client.py | |
parent | 08c77499a2e8bc79d6788d70ef96d77752ed6325 (diff) | |
download | kafka-python-vendor-six-consistently.tar.gz |
Vendor `six` consistentlyvendor-six-consistently
Use vendored `six`, and also `six.moves.range` rather than `xrange`
Diffstat (limited to 'test/test_client.py')
-rw-r--r-- | test/test_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_client.py b/test/test_client.py index c53983c..1c68978 100644 --- a/test/test_client.py +++ b/test/test_client.py @@ -2,7 +2,7 @@ import socket from mock import ANY, MagicMock, patch from operator import itemgetter -import six +from kafka.vendor import six from . import unittest from kafka import SimpleClient |