From aceed2731e6f1e8f5a0061aa1a2baaaa46383955 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Sun, 3 Jun 2012 04:00:21 +0200 Subject: [PATCH] Add missing URL field --- jamendoparser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jamendoparser.py b/jamendoparser.py index 67a8d74..3ac061b 100644 --- a/jamendoparser.py +++ b/jamendoparser.py @@ -73,6 +73,7 @@ for event, element in iterparse(xml, tag="artist"): # id, name, url, image, mbgid, location, Albums artistid = get_attribute(element, 'id') name = get_attribute(element, 'name') + url = get_attribute(element, 'url') image = get_attribute(element, 'image') mbgid = get_attribute(element, 'mbgid') location = get_attribute(element, 'location')