From c52fcca2ace3c296a343bcd052c68083c06b0279 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Wed, 12 Jun 2013 19:20:54 +0200 Subject: [PATCH] output utf-8 --- pandora_client/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_client/__init__.py b/pandora_client/__init__.py index 282dbfc..c218fc7 100644 --- a/pandora_client/__init__.py +++ b/pandora_client/__init__.py @@ -456,7 +456,7 @@ class Client(object): print 'Files need to be in a folder structure like this:\n%s\n' % example print 'The following files do not fit into the folder structure and will not be synced:' print '\t', - print '\n\t'.join([f[len(path):] for f in unknown]) + print '\n\t'.join([f[len(path):].encode('utf-8') for f in unknown]) print '' '''