diff --git a/client/djrandom_client/djfuse.py b/client/djrandom_client/djfuse.py index a3b1fd5b365b65b781daa7a23e2578b2358902fc..a6d97f91fa0d677976c9c12cc16a5f05c6ee518e 100644 --- a/client/djrandom_client/djfuse.py +++ b/client/djrandom_client/djfuse.py @@ -151,7 +151,7 @@ class DJFS(LoggingMixIn, Operations): songs = self._stat_cache.get_dir(artist, album) if not songs: raise OSError(ENOENT) - values = ['%s.mp3' % (x['title'] || 'UNKNOWN') for x in songs] + values = ['%s.mp3' % (x['title'] or 'UNKNOWN') for x in songs] return ['.', '..'] + [x.encode('utf-8') for x in values] def read(self, path, size, offset, fh=None):