decode takes no keyword arguments in python-2.6
This commit is contained in:
parent
ba33c327f5
commit
f3d7a6394b
|
@ -56,7 +56,7 @@ class Args(object):
|
|||
|
||||
def string(s):
|
||||
if type(s) is bytes:
|
||||
return s.decode('utf-8', errors='replace')
|
||||
return s.decode('utf-8', 'replace')
|
||||
else:
|
||||
return str(s)
|
||||
|
||||
|
|
Loading…
Reference in New Issue