Skip to content

Commit

Permalink
Fixing missing lang parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Oct 16, 2016
1 parent f5d42cf commit c7ae74a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/task/tags.py
Expand Up @@ -217,7 +217,7 @@ def _create_tags_page(self, kw, lang, include_tags=True, include_categories=True
context["cat_items"] = [(tag, self.site.link("category", tag, lang)) for tag
in categories]
context['cat_hierarchy'] = [(node.name, node.category_name, node.category_path,
self.site.link("category", node.category_name),
self.site.link("category", node.category_name, lang),
node.indent_levels, node.indent_change_before,
node.indent_change_after)
for node in self.site.category_hierarchy]
Expand Down

0 comments on commit c7ae74a

Please sign in to comment.