From 20fe707a09cce0e752a7af6cdd98981edcad074c Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Mon, 24 Jan 2011 16:08:04 -0800 Subject: [PATCH] change BPD browser to use albumartist instead of artist --- 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 ac308214f..bf4de5fb6 100644 --- a/beetsplug/bpd/__init__.py +++ b/beetsplug/bpd/__init__.py @@ -845,7 +845,7 @@ class Server(BaseServer): # albums if not album: for a in self.lib.albums(artist or None): - parts = a.artist, a.album + parts = a.albumartist, a.album yield u'directory: ' + seq_to_path(parts, PATH_PH) # tracks