Mercurial > p > roundup > code
diff CHANGES.txt @ 6418:559b3d8e03d7
issue2551136 - timezone extention crash on Python 3.8.
cgi.escape is used in some template to provide a select box of
timezones. It uses cgi.escape that is depricated and removed from 3.8
and newer. Use html.escape with fallback to cgi.escape.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 21 May 2021 19:38:37 -0400 |
| parents | 99d344aa825d |
| children | 5d6b6e948e17 |
line wrap: on
line diff
--- a/CHANGES.txt Fri May 21 19:32:40 2021 -0400 +++ b/CHANGES.txt Fri May 21 19:38:37 2021 -0400 @@ -106,6 +106,10 @@ - issue2550648 - keyword boolean search. Issue has multiple problems. Fix issue where saving the keyword boolean search would remove the link to open the editor. +- issue2551136 - timezone extention crash on Python 3.8. cgi.escape + is used in some template to provide a select box of timezones. It + uses cgi.escape that is depricated and removed from 3.8 and newer. + Use html.escape with fallback to cgi.escape. (Cedric Krier) Features: - issue2550522 - Add 'filter' command to command-line
