Merge "Be explicit that a code path is just for py2"

This commit is contained in:
Zuul 2019-05-18 17:49:23 +00:00 committed by Gerrit Code Review
commit f17b9d2e24

View File

@ -1946,7 +1946,8 @@ class TestFile(Base):
if len(key) > j:
key = key[:j]
if isinstance(val, bytes):
# NB: we'll likely write object metadata that's *not* UTF-8
if six.PY2:
val = val[:j]
else:
val = val.encode('utf8')[:j].decode(