Encode back to UTF-8

This commit is contained in:
JonnyWong16 2018-06-29 23:50:42 -07:00
parent 1e8e96398b
commit 2bd92acca7

View File

@ -243,7 +243,7 @@ def terminate_long_pause(session_id, message, limit, interval, notify=None):
def arg_decoding(arg):
return arg.decode(TAUTULLI_ENCODING)
return arg.decode(TAUTULLI_ENCODING).encode('UTF-8')
if __name__ == "__main__":