Mercurial > libervia-backend
comparison sat/plugins/plugin_misc_text_syntaxes.py @ 3075:501a1a3c8594
plugin text syntaxes: don't use anymore deprecated cgi.escape
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 18 Nov 2019 20:50:34 +0100 |
parents | fee60f17ebac |
children | 9d0df638c8b4 |
comparison
equal
deleted
inserted
replaced
3074:c2625920e05a | 3075:501a1a3c8594 |
---|---|
16 | 16 |
17 # You should have received a copy of the GNU Affero General Public License | 17 # You should have received a copy of the GNU Affero General Public License |
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. | 18 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 | 19 |
20 import re | 20 import re |
21 from cgi import escape | 21 from html import escape |
22 from functools import partial | 22 from functools import partial |
23 from sat.core.i18n import _, D_ | 23 from sat.core.i18n import _, D_ |
24 from sat.core.constants import Const as C | 24 from sat.core.constants import Const as C |
25 from sat.core.log import getLogger | 25 from sat.core.log import getLogger |
26 | 26 |