Skip to content

Commit

Permalink
Fix #2816: use inheritance tree when looking for engine
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Jun 4, 2017
1 parent 0ca3747 commit 0ce47e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nikola/utils.py
Expand Up @@ -646,8 +646,8 @@ def get_template_engine(themes):
if os.path.isfile(engine_path):
with open(engine_path) as fd:
return fd.readlines()[0].strip()
# default
return 'mako'
# default
return 'mako'


def get_parent_theme_name(theme_name, themes_dirs=None):
Expand Down

0 comments on commit 0ce47e5

Please sign in to comment.