* morituri/common/program.py:

Commit one missing line from patch in #4 for multi-artist discs.
This commit is contained in:
Thomas Vander Stichele
2010-04-14 08:02:35 +00:00
parent db74af7ff4
commit ed6c468fba
2 changed files with 6 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2010-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:
Commit one missing line from patch in #4 for multi-artist discs.
2010-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
patch by: Peter Oliver.

View File

@@ -89,6 +89,7 @@ def getMetadata(release):
# various artists discs can have tracks with no artist
track.artist = t.artist and t.artist.name or release.artist.name
track.sortName = t.artist.sortName
track.mbidArtist = urlparse(t.artist.id)[2].split("/")[-1]
track.title = t.title
track.mbid = urlparse.urlparse(t.id)[2].split("/")[-1]