Merge branch 'hotfix'
This commit is contained in:
commit
ab8c3644e2
2 changed files with 3 additions and 3 deletions
|
|
@ -14,7 +14,7 @@ import os, sys, importlib, inspect, json
|
|||
from .exceptions import *
|
||||
from .utils.jinja import get_jenv, get_template, render_template, get_email_from_template
|
||||
|
||||
__version__ = '8.7.0'
|
||||
__version__ = '8.7.1'
|
||||
__title__ = "Frappe Framework"
|
||||
|
||||
local = Local()
|
||||
|
|
|
|||
|
|
@ -349,9 +349,9 @@ def sync_global_search():
|
|||
frappe.flags.update_global_search.append(
|
||||
dict(doctype='Static Web Page',
|
||||
name=route,
|
||||
content=frappe.text_type(text),
|
||||
content=text_type(text),
|
||||
published=1,
|
||||
title=soup.title.string,
|
||||
title=text_type(soup.title.string),
|
||||
route=route))
|
||||
|
||||
except Exception:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue