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)
 |