Add album ID field

This commit is contained in:
Sven Slootweg 2012-06-03 04:29:12 +02:00
parent 27a86d7d87
commit 97360fbb14

View file

@ -83,6 +83,7 @@ for event, element in iterparse(xml, tag="artist"):
for album in element.find('Albums'):
# id, name, url, releasedate, filename, mbgid, license_artwork, Tracks
albumid = get_attribute(album, 'id')
albumname = get_attribute(album, 'name')
albumurl = get_attribute(album, 'url')
albumrelease = get_attribute(album, 'releasedate')