6 lines
138 B
Python
6 lines
138 B
Python
import frappe.utils, os
|
|
|
|
def execute():
|
|
path = frappe.utils.get_site_path('task-logs')
|
|
if not os.path.exists(path):
|
|
os.makedirs(path)
|