Don't die if some non-MD files are found in the wiki repo during rebuild_index()

This commit is contained in:
Alvin Chow 2015-09-25 16:35:16 -07:00
parent 08525c10ba
commit 1cf9295c78
1 changed files with 3 additions and 0 deletions

View File

@ -25,6 +25,9 @@ def rebuild_index():
wiki = Wiki(app.config['WIKI_PATH'])
for entry in wiki.get_index():
page = wiki.get_page(entry['name'])
if not page:
# Some non-markdown files may have issues
continue
name = filename_to_cname(page['name'])
# TODO add email?
body = dict(name=name,