We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf8f58f commit 70103adCopy full SHA for 70103ad
nikola/nikola.py
@@ -1353,10 +1353,13 @@ def flatten(task):
1353
'task_dep': task_dep
1354
}
1355
1356
- def scan_posts(self):
1357
- """Scan all the posts."""
+ def scan_posts(self, really=False, ignore_quit=False, quiet=False):
+ """Scan all the posts.
1358
+
1359
+ Ignoring ignore_quit and quiet right now because noone uses them?
1360
+ """
1361
# FIXME this is temporary while moving things out to a plugin
- if self._scanned:
1362
+ if self._scanned and not really:
1363
return
1364
1365
# Reset things
0 commit comments