Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Would be nice to actually generate the Atom feeds too...
  • Loading branch information
da2x committed Aug 31, 2015
1 parent d73ed1b commit 16558fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nikola/plugins/task/tags.py
Expand Up @@ -334,7 +334,7 @@ def tag_page_as_list(self, tag, lang, post_list, kw, is_category):
yield task

if self.site.config['GENERATE_ATOM']:
self.atom_feed_list(kind, tag, lang, post_list, context, kw)
yield self.atom_feed_list(kind, tag, lang, post_list, context, kw)

def atom_feed_list(self, kind, tag, lang, post_list, context, kw):
"""Generate atom feeds for tag lists."""
Expand All @@ -354,7 +354,7 @@ def atom_feed_list(self, kind, tag, lang, post_list, context, kw):
'uptodate': [utils.config_changed(kw, 'nikola.plugins.task.tags:atom')],
'task_dep': ['render_posts'],
}
yield task
return task

def tag_rss(self, tag, lang, posts, kw, is_category):
"""Create a RSS feed for a single tag in a given language."""
Expand Down

0 comments on commit 16558fc

Please sign in to comment.