You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Django 3.0 switches to using Python 3's built-in HTML escaper, which
prefers to escape entities using hex rather than decimal.
Some of our tests check rendered HTML output against pre-escaped
strings, and fail because ''' is now '''.
Fix this by using the escape function so we get consistent escaping no
matter which Django version.
Signed-off-by: Andrew Donnellan <[email protected]>
Reviewed-by: Stephen Finucane <[email protected]>
0 commit comments