forked from 0x2620/pandora
fix typo
This commit is contained in:
parent
799f882f77
commit
c57c6302dd
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ def update_sitemap(base_url):
|
||||||
el = ET.SubElement(video, "video:title")
|
el = ET.SubElement(video, "video:title")
|
||||||
el.text = i.get('title')
|
el.text = i.get('title')
|
||||||
el = ET.SubElement(video, "video:thumbnail_loc")
|
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', ''))
|
description = i.get('description', i.get('summary', ''))
|
||||||
if description:
|
if description:
|
||||||
el = ET.SubElement(video, "video:description")
|
el = ET.SubElement(video, "video:description")
|
||||||
|
|
Loading…
Reference in a new issue