Skip to content

Commit

Permalink
Merge pull request #2534 from getnikola/fix-lang-in-cat-hierarchy
Browse files Browse the repository at this point in the history
Fixing missing lang parameter.
  • Loading branch information
Kwpolska committed Oct 16, 2016
2 parents f5d42cf + c7ae74a commit 8b6f349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/task/tags.py
Original file line number Diff line number Diff line change
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 8b6f349

Please sign in to comment.