From 28e49c955a9e7a6a7edb28085687ed682e75efaf Mon Sep 17 00:00:00 2001 From: William McBrine Date: Thu, 5 Jun 2014 23:37:38 -0400 Subject: [PATCH] Non-ASCII names in ToGo. --- plugins/togo/togo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/togo/togo.py b/plugins/togo/togo.py index 605e144..a7d66f8 100644 --- a/plugins/togo/togo.py +++ b/plugins/togo/togo.py @@ -378,7 +378,8 @@ class ToGo(Plugin): logger.info('[%s] Queued "%s" for transfer to %s' % (time.strftime('%d/%b/%Y %H:%M:%S'), unquote(theurl), togo_path)) - urlstring = '
'.join([unquote(x) for x in urls]) + urlstring = '
'.join([unicode(unquote(x), 'utf-8') + for x in urls]) message = TRANS_QUEUE % (urlstring, togo_path) else: message = MISSING -- 2.11.4.GIT