Fixed issue while using decode() without checking type of the variable. Type maybe string or byte.
parent
8bd17cb433
commit
76087f3df3
|
@ -53,7 +53,9 @@ else:
|
|||
from io import StringIO
|
||||
|
||||
def u(x):
|
||||
return x.decode()
|
||||
if hasattr(x, 'decode'):
|
||||
return x.decode()
|
||||
return x
|
||||
|
||||
|
||||
def usage():
|
||||
|
|
Loading…
Reference in New Issue