From c57c6302dda660a01e9d3cee343b04829b03f00f Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Fri, 8 Mar 2013 05:36:26 +0000 Subject: [PATCH] fix typo --- pandora/item/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora/item/tasks.py b/pandora/item/tasks.py index b60f16a6..8512343b 100644 --- a/pandora/item/tasks.py +++ b/pandora/item/tasks.py @@ -149,7 +149,7 @@ def update_sitemap(base_url): el = ET.SubElement(video, "video:title") el.text = i.get('title') el = ET.SubElement(video, "video:thumbnail_loc") - el.text = absolute_url("%s/%96p.jpg" % i.itemId) + el.text = absolute_url("%s/96p.jpg" % i.itemId) description = i.get('description', i.get('summary', '')) if description: el = ET.SubElement(video, "video:description")