Skip to content

Commit

Permalink
keep compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed May 9, 2015
1 parent bf8f58f commit 70103ad
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions nikola/nikola.py
Expand Up @@ -1353,10 +1353,13 @@ def flatten(task):
'task_dep': task_dep
}

def scan_posts(self):
"""Scan all the posts."""
def scan_posts(self, really=False, ignore_quit=False, quiet=False):
"""Scan all the posts.
Ignoring ignore_quit and quiet right now because noone uses them?
"""
# FIXME this is temporary while moving things out to a plugin
if self._scanned:
if self._scanned and not really:
return

# Reset things
Expand Down

0 comments on commit 70103ad

Please sign in to comment.