Skip to content

Commit 70103ad

Browse files
committedMay 9, 2015
keep compatibility
1 parent bf8f58f commit 70103ad

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
 

Diff for: ‎nikola/nikola.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -1353,10 +1353,13 @@ def flatten(task):
13531353
'task_dep': task_dep
13541354
}
13551355

1356-
def scan_posts(self):
1357-
"""Scan all the posts."""
1356+
def scan_posts(self, really=False, ignore_quit=False, quiet=False):
1357+
"""Scan all the posts.
1358+
1359+
Ignoring ignore_quit and quiet right now because noone uses them?
1360+
"""
13581361
# FIXME this is temporary while moving things out to a plugin
1359-
if self._scanned:
1362+
if self._scanned and not really:
13601363
return
13611364

13621365
# Reset things

0 commit comments

Comments
 (0)
Please sign in to comment.