seitime-frappe/frappe/patches/v13_0/jinja_hook.py
Suraj Shetty c0c5b2ebdd
style: format all python files using black (#16453)
Co-authored-by: Frappe Bot <developers@frappe.io>
2022-04-12 10:59:25 +05:30

17 lines
421 B
Python

# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors
# License: MIT. See LICENSE
from click import secho
import frappe
def execute():
if frappe.get_hooks("jenv"):
print()
secho(
'WARNING: The hook "jenv" is deprecated. Follow the migration guide to use the new "jinja" hook.',
fg="yellow",
)
secho("https://github.com/frappe/frappe/wiki/Migrating-to-Version-13", fg="yellow")
print()