Skip to content

Commit

Permalink
Breaking too long line.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Jun 7, 2017
1 parent c51cf3f commit 1fc3b66
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nikola/plugins/task/taxonomies.py
Expand Up @@ -443,7 +443,10 @@ def gen_tasks(self):

# Process classifications
for classification, (filtered_posts, generate_list, generate_rss) in post_lists_per_lang[taxonomy.classification_name][lang].items():
for task in self._generate_classification_page(taxonomy, classification, filtered_posts, generate_list, generate_rss, lang, post_lists_per_lang[taxonomy.classification_name], classification_set_per_lang.get(taxonomy.classification_name)):
for task in self._generate_classification_page(taxonomy, classification, filtered_posts,
generate_list, generate_rss, lang,
post_lists_per_lang[taxonomy.classification_name],
classification_set_per_lang.get(taxonomy.classification_name)):
yield task
# In case we are ignoring plugins for overview, we must have a collision for
# tags and categories. Handle this special case with extra code.
Expand Down

0 comments on commit 1fc3b66

Please sign in to comment.