From 84f67078c0fd5fb10c79b123a759792bafc5c708 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Thu, 23 Feb 2012 20:24:27 +0530 Subject: [PATCH] atom feed is not standalone --- pandora/item/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora/item/views.py b/pandora/item/views.py index 2ca647cc..c546b2ff 100644 --- a/pandora/item/views.py +++ b/pandora/item/views.py @@ -938,7 +938,7 @@ def atom_xml(request): el.attrib['height'] = str(thumbheight) feed.append(entry) return HttpResponse( - '\n' + ET.tostring(feed), + '\n' + ET.tostring(feed), 'application/atom+xml' )