Fixed a typo
This commit is contained in:
parent
a0b266d78d
commit
90d5a4ee5d
1 changed files with 1 additions and 1 deletions
|
|
@ -231,7 +231,7 @@ def comments_feed(id):
|
||||||
feed_url=request.url, url=request.url_root)
|
feed_url=request.url, url=request.url_root)
|
||||||
for comment in snippet.comments:
|
for comment in snippet.comments:
|
||||||
feed.add(comment.title or u'Untitled Comment',
|
feed.add(comment.title or u'Untitled Comment',
|
||||||
unicode(snippet.rendered_text),
|
unicode(comment.rendered_text),
|
||||||
content_type='html', author=comment.author.name,
|
content_type='html', author=comment.author.name,
|
||||||
url=request.url, updated=comment.pub_date)
|
url=request.url, updated=comment.pub_date)
|
||||||
return feed.get_response()
|
return feed.get_response()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue