The license.txt file has been replaced with LICENSE for quite a while now. INAL but it didn't seem accurate to say "hey, checkout license.txt although there's no such file". Apart from this, there were inconsistencies in the headers altogether...this change brings consistency.
10 lines
357 B
Python
10 lines
357 B
Python
# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# License: MIT. See LICENSE
|
|
|
|
import frappe
|
|
|
|
|
|
def execute():
|
|
frappe.delete_doc("DocType", "Package Publish Tool", ignore_missing=True)
|
|
frappe.delete_doc("DocType", "Package Document Type", ignore_missing=True)
|
|
frappe.delete_doc("DocType", "Package Publish Target", ignore_missing=True)
|