Skip to content

Commit

Permalink
Fixing copy'n'paste error.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Dec 1, 2016
1 parent f5059c8 commit fee0925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/task/tags.py
Expand Up @@ -134,6 +134,6 @@ def provide_context_and_uptodate(self, tag, lang, node=None):
"tag": tag,
}
if self.show_list_as_index:
context["rss_link"] = """<link rel="alternate" type="application/rss+xml" type="application/rss+xml" title="RSS for tag {0} ({1})" href="{2}">""".format(tag, lang, self.site.link("tag_rss", cat, lang))
context["rss_link"] = """<link rel="alternate" type="application/rss+xml" type="application/rss+xml" title="RSS for tag {0} ({1})" href="{2}">""".format(tag, lang, self.site.link("tag_rss", tag, lang))
kw.update(context)
return context, kw

0 comments on commit fee0925

Please sign in to comment.