From 945e253c2f654454f98e093a6f94e5257f52338d Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Mon, 7 Feb 2011 19:47:23 -0800 Subject: [PATCH] fix artist field in BPD file browser --- 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 bf4de5fb6..31508675a 100644 --- a/beetsplug/bpd/__init__.py +++ b/beetsplug/bpd/__init__.py @@ -823,7 +823,7 @@ class Server(BaseServer): yield u'directory: ' + seq_to_path((artist,), PATH_PH) elif album is None: # List all albums for an artist. for album in self.lib.albums(artist): - parts = (album.artist, album.album) + parts = (album.albumartist, album.album) yield u'directory: ' + seq_to_path(parts, PATH_PH) elif track is None: # List all tracks on an album. for item in self.lib.items(artist, album):