23 lines
543 B
Python
23 lines
543 B
Python
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# License: MIT. See LICENSE
|
|
import frappe
|
|
from frappe import _
|
|
from frappe.utils.response import is_traceback_allowed
|
|
|
|
no_cache = 1
|
|
|
|
|
|
def get_context(context):
|
|
if frappe.flags.in_migrate:
|
|
return
|
|
|
|
if not context.title:
|
|
context.title = _("Server Error")
|
|
if not context.message:
|
|
context.message = _("There was an error building this page")
|
|
|
|
return {
|
|
"error": frappe.get_traceback().replace("<", "<").replace(">", ">")
|
|
if is_traceback_allowed()
|
|
else ""
|
|
}
|