mirror of
https://github.com/beetbox/beets.git
synced 2026-01-30 20:13:37 +01:00
fixed silly error when listing tracks in BPD
This commit is contained in:
parent
e0809bfaf7
commit
514d1bc706
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue