decode takes no keyword arguments in python-2.6

This commit is contained in:
ZyX 2013-05-02 01:23:04 +04:00
parent ba33c327f5
commit f3d7a6394b
1 changed files with 1 additions and 1 deletions

View File

@ -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)