* fix(unicode): Import unicode_literals in every file * fix(unicode): Test if safe_json_loads return unicode instead of bytes
6 lines
207 B
Python
6 lines
207 B
Python
from __future__ import unicode_literals
|
|
import frappe
|
|
|
|
def execute():
|
|
frappe.reload_doc('core', 'doctype', 'system_settings')
|
|
frappe.db.sql("update `tabSystem Settings` set allow_error_traceback=1")
|