From 82ac3f20a907a89d2eb050d92597e8b5c75028ac Mon Sep 17 00:00:00 2001
From: ale <ale@incal.net>
Date: Mon, 25 Jul 2011 14:51:24 +0100
Subject: [PATCH] typo

---
 client/djrandom_client/djfuse.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/client/djrandom_client/djfuse.py b/client/djrandom_client/djfuse.py
index a3b1fd5..a6d97f9 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):
-- 
GitLab