Use attributes like 'guest' or 'additional' also from generic performer ARs.

This commit is contained in:
Lukáš Lalinský
2007-04-25 08:30:14 +02:00
parent 259d4e4129
commit 47cdbdb2b1
2 changed files with 3 additions and 1 deletions

View File

@@ -2,6 +2,8 @@ Version 0.9.0beta1 - 2007-XX-YY
* Bug Fixes:
* Save XSOP frame to ID3v2.3 tags. (#2484)
* Don't write string terminators to ID3 frames.
* Use attributes like 'guest' or 'additional' also
from generic performer ARs.
Version 0.9.0alpha8 - 2007-04-15
* New Features:

View File

@@ -74,7 +74,7 @@ def _relations_to_metadata(relation_lists, m, config):
elif reltype == 'Instrument':
name = 'performer:' + _parse_attributes(attribs)
elif reltype == 'Performer':
name = 'performer:'
name = 'performer:' + _parse_attributes(attribs)
else:
try:
name = _artist_rel_types[relation.type]