Mercurial > libervia-backend
diff libervia/backend/plugins/plugin_blog_import_dotclear.py @ 4329:73d83cb53673
plugin blog import dotclear: repalce deprecated `cgi` by `html`
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 20 Nov 2024 14:35:09 +0100 |
parents | 4b842c1fb686 |
children |
line wrap: on
line diff
--- a/libervia/backend/plugins/plugin_blog_import_dotclear.py Wed Nov 20 11:49:46 2024 +0100 +++ b/libervia/backend/plugins/plugin_blog_import_dotclear.py Wed Nov 20 14:35:09 2024 +0100 @@ -28,7 +28,7 @@ from collections import OrderedDict import itertools import time -import cgi +import html import os.path @@ -188,7 +188,7 @@ # we don't use atom:uri because it's used for jid in XMPP content = '{}\n<hr>\n<a href="{}">author website</a>'.format( comment["comment_content"], - cgi.escape(comment["comment_site"]).replace('"', "%22"), + html.escape(comment["comment_site"]).replace('"', "%22"), ) else: content = comment["comment_content"]