forked from platypush/platypush
Replaced deprecated flask.escape
with markupsafe.escape
.
This commit is contained in:
parent
82811a11a6
commit
e4756eb639
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue