fix: Do not print frontmatter error logs (#7950)

This commit is contained in:
Suraj Shetty 2019-07-22 14:36:48 +05:30 committed by Faris Ansari
parent c86ca789e0
commit c11aea8611

View file

@ -246,8 +246,7 @@ def setup_source(page_info):
page_info.update(res['attributes'])
source = res['body']
except Exception as e:
print('Error parsing ' + page_info.template)
print(e)
pass
source = frappe.utils.md_to_html(source)