Skip to content

Commit

Permalink
Remove redundant use_dep_file lines
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Nov 20, 2016
1 parent a6a459c commit d59359a
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion nikola/plugins/compile/html.py
Expand Up @@ -40,7 +40,6 @@ class CompileHtml(PageCompiler):

name = "html"
friendly_name = "HTML"
use_dep_file = True

def compile(self, source, dest, is_two_file=True, post=None, lang=None):
"""Compile the source file into HTML and save as dest."""
Expand Down
1 change: 0 additions & 1 deletion nikola/plugins/compile/ipynb.py
Expand Up @@ -70,7 +70,6 @@ class CompileIPynb(PageCompiler):
name = "ipynb"
friendly_name = "Jupyter/IPython Notebook"
demote_headers = True
use_dep_file = True
default_kernel = 'python2' if sys.version_info[0] == 2 else 'python3'

def set_site(self, site):
Expand Down
1 change: 0 additions & 1 deletion nikola/plugins/compile/markdown/__init__.py
Expand Up @@ -49,7 +49,6 @@ class CompileMarkdown(PageCompiler):
name = "markdown"
friendly_name = "Markdown"
demote_headers = True
use_dep_file = True
extensions = []
site = None

Expand Down
1 change: 0 additions & 1 deletion nikola/plugins/compile/pandoc.py
Expand Up @@ -44,7 +44,6 @@ class CompilePandoc(PageCompiler):

name = "pandoc"
friendly_name = "pandoc"
use_dep_file = True

def set_site(self, site):
"""Set Nikola site."""
Expand Down
1 change: 0 additions & 1 deletion nikola/plugins/compile/rest/__init__.py
Expand Up @@ -57,7 +57,6 @@ class CompileRest(PageCompiler):
name = "rest"
friendly_name = "reStructuredText"
demote_headers = True
use_dep_file = True
logger = None

def compile_string(self, data, source_path=None, is_two_file=True):
Expand Down

0 comments on commit d59359a

Please sign in to comment.