Skip to content

Commit

Permalink
Check render_posts when check -l
Browse files Browse the repository at this point in the history
  • Loading branch information
da2x committed May 4, 2015
1 parent c9c112e commit b4668eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.txt
Expand Up @@ -21,6 +21,7 @@ Features
Bugfixes
--------

* `nikola check -l` didn’t scan posts
* Don’t use sets for ``FAVICONS`` (Issue #1674)
* Posts/Pages that use post-list will never be up to date (Issue #1671)
* Support using post.text() in post_list_directive.tmpl (Issue #1671)
Expand Down
2 changes: 1 addition & 1 deletion nikola/plugins/command/check.py
Expand Up @@ -244,7 +244,7 @@ def scan_links(self, find_sources=False):
if task.split(':')[0] in (
'render_tags', 'render_archive',
'render_galleries', 'render_indexes',
'render_pages'
'render_pages', 'render_posts',
'render_site') and '.html' in task:
if self.analyze(task, find_sources):
failure = True
Expand Down

0 comments on commit b4668eb

Please sign in to comment.