mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-05 05:09:11 +00:00
8 lines
192 B
Python
8 lines
192 B
Python
import frappe
|
|
from frappe import _
|
|
|
|
def execute():
|
|
frappe.reload_doctype("System Settings")
|
|
settings = frappe.get_doc("System Settings")
|
|
settings.db_set("app_name", "ERPNext", commit=True)
|