mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 05:41:42 +00:00
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:
parent
7ae81d5c8b
commit
2b9ec0812b
@ -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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user