lit/util.py: Another fix for py3.

'str' object has no attribute 'decode'.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@280641 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2016-09-05 00:00:40 +00:00
parent 7ae81d5c8b
commit 2b9ec0812b

View File

@ -20,6 +20,8 @@ def to_string(bytes):
def convert_string(bytes):
try:
return to_string(bytes.decode('utf-8'))
except AttributeError: # 'str' object has no attribute 'decode'.
return str(bytes)
except UnicodeError:
return str(bytes)