Skip to content

Commit 9750393

Browse files
committedAug 29, 2016
Fix build_themes.py
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 99028a2 commit 9750393

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎scripts/build_themes.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ def init_theme(theme):
8686

8787
conf_path = "/".join([t_path,"conf.py"])
8888
# Get custom required settings from the theme
89-
themes = utils.get_theme_chain(theme, _themes_dir='v7')
90-
extra_conf_path = utils.get_asset_path('conf.py.sample', themes, _themes_dir='v7')
89+
themes = utils.get_theme_chain(theme, themes_dirs=['v7', 'themes'])
90+
extra_conf_path = utils.get_asset_path('conf.py.sample', themes)
9191
extra_conf = ''
9292
if extra_conf_path:
9393
extra_conf = io.open(extra_conf_path, 'r', encoding="utf-8").read()

0 commit comments

Comments
 (0)
Please sign in to comment.