The render fails with recent versions (2.1.x) of Werkzeug as they have removed the escape method from utils module.
Here's their change commit:
pallets/werkzeug@22d1e9a
Usage of escape() in Eve:
render.py, method xml_add_links():
chunk % (rel, utils.escape(d["href"]), utils.escape(d["title"]))
Environment
- Python version: 3.10
- Eve version: 1.1.5
The render fails with recent versions (2.1.x) of Werkzeug as they have removed the escape method from utils module.
Here's their change commit:
pallets/werkzeug@22d1e9a
Usage of escape() in Eve:
render.py, method xml_add_links():
chunk % (rel, utils.escape(d["href"]), utils.escape(d["title"]))
Environment