This commit is contained in:
Zykino 2018-12-11 01:17:23 +01:00
parent f66ba6cc21
commit bddf2ee414

View file

@ -206,7 +206,7 @@ def cleanString(toclean):
return cleaned return cleaned
def decodeArgumentStrings(options, encoding): def decodeArgumentStrings(options, encoding):
# Python crash when decding from UTF-8 to UTF-8, so we prevent this # Python crash when decoding from UTF-8 to UTF-8, so we prevent this
if "utf-8" == encoding.lower(): if "utf-8" == encoding.lower():
return; return;