brotherton-erpnext/erpnext/patches/v11_0/rename_learn_to_help.py
2018-12-24 19:39:45 +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'))