diff --git a/resources/lib/views.py b/resources/lib/views.py
index 61d47986..cec43b61 100644
--- a/resources/lib/views.py
+++ b/resources/lib/views.py
@@ -442,7 +442,7 @@ class Playlist(object):
         dirs, files = xbmcvfs.listdir(path)
         for file in files:
             if file.decode('utf-8').startswith('Emby'):
-                self._delete_playlist(os.path.join(path, file))
+                self._delete_playlist(os.path.join(path, file.decode('utf-8')))
 
 
 class VideoNodes(object):