diff --git a/frappe/www/app.py b/frappe/www/app.py index 6088c413dc..5f19712cd3 100644 --- a/frappe/www/app.py +++ b/frappe/www/app.py @@ -34,10 +34,10 @@ def get_context(context): boot_json = frappe.as_json(boot) # remove script tags from boot - boot_json = re.sub("\", "", boot_json) + boot_json = re.sub(r"\", "", boot_json) # TODO: Find better fix - boot_json = re.sub("", "", boot_json) + boot_json = re.sub(r"", "", boot_json) context.update({ "no_cache": 1,