From 4a3d481e16eed4bb6d49f79e8dbdd207d93c63e1 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 1 Jul 2012 01:25:11 +0200 Subject: [PATCH] Encode logs. fix #496 --- couchpotato/core/plugins/log/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/log/main.py b/couchpotato/core/plugins/log/main.py index 83e190a..e6ff113 100644 --- a/couchpotato/core/plugins/log/main.py +++ b/couchpotato/core/plugins/log/main.py @@ -73,7 +73,7 @@ class Logging(Plugin): return jsonified({ 'success': True, - 'log': log, + 'log': toUnicode(log), 'total': total, })