From 514d1bc7062b4e2a7b6da1c9d9702406c8351a5f Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Mon, 9 Aug 2010 21:57:06 -0700 Subject: [PATCH] fixed silly error when listing tracks in BPD --- beetsplug/bpd/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/bpd/__init__.py b/beetsplug/bpd/__init__.py index 46e55d0ec..99221bb9e 100644 --- a/beetsplug/bpd/__init__.py +++ b/beetsplug/bpd/__init__.py @@ -848,7 +848,7 @@ class Server(BaseServer): # albums if not album: for a in self.lib.albums(artist or None): - parts = (album.artist, album.album) + parts = a.artist, a.album conn.send(u'directory: ' + seq_to_path(parts, PATH_PH)) # tracks