Replaced deprecated flask.escape with markupsafe.escape.

This commit is contained in:
Fabio Manganiello 2023-07-25 00:26:15 +02:00
parent 82811a11a6
commit e4756eb639
Signed by untrusted user: blacklight
GPG key ID: D90FBA7F76362774

View file

@ -1,6 +1,7 @@
import json import json
from flask import abort, request, Response, Blueprint, escape from flask import abort, request, Response, Blueprint
from markupsafe import escape
from platypush.backend.http.app import template_folder from platypush.backend.http.app import template_folder
from platypush.common.spotify import SpotifyMixin from platypush.common.spotify import SpotifyMixin