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_protocol_legacy.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_protocol_legacy.py')
-rw-r--r-- | test/test_protocol_legacy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_protocol_legacy.py b/test/test_protocol_legacy.py index d705e3a..1341af0 100644 --- a/test/test_protocol_legacy.py +++ b/test/test_protocol_legacy.py @@ -2,7 +2,7 @@ from contextlib import contextmanager import struct -import six +from kafka.vendor import six from mock import patch, sentinel from . import unittest |