brotherton-erpnext/erpnext/patches/v12_0/rename_learn_to_help.py
2018-12-25 11:16:49 +05:30

12 lines
209 B
Python

import frappe
from frappe import _
def execute():
frappe.db.sql("""
UPDATE `tabDesktop Icon`
SET
`module_name`='Help', `label`=%s
WHERE
`module_name`='Learn' AND
`standard`=1
""", _('Help'))