From 72e5aa57a07d6a6b92e04f1d3cdce72ffecd2ed0 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Sat, 6 Oct 2018 17:51:09 +0530 Subject: [PATCH] fix(make_content): added missing parameter docsapp --- frappe/utils/help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/utils/help.py b/frappe/utils/help.py index 94ce1a4b53..521d40ffcf 100644 --- a/frappe/utils/help.py +++ b/frappe/utils/help.py @@ -160,7 +160,7 @@ class HelpDatabase(object): content = frappe.utils.md_to_html(content) title = self.make_title(basepath, fname, content) intro = self.make_intro(content) - content = self.make_content(content, fpath, relpath, app) + content = self.make_content(content, fpath, relpath, app, docs_app) self.db.sql('''INSERT INTO `help`(`path`, `content`, `title`, `intro`, `full_path`) VALUES (%s, %s, %s, %s, %s)''', (relpath, content, title, intro, fpath)) except jinja2.exceptions.TemplateSyntaxError: