mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-06 05:39:12 +00:00
12 lines
209 B
Python
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')) |