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
Older versions of WTForms are not compatible with SQLAlchemy 1.2 (pallets-eco/wtforms-sqlalchemy#9). We should probably declare a dependency on WTForms>=2.2.
But first we should make sure everything works correctly under WTForms 2.3 (the latest release).
The text was updated successfully, but these errors were encountered:
WTForms 2.3 started escaping label text with markupsafe[1].
We have several cases where we actually do want the label to contain
html (to show icons). In most cases we were already passing an object
with an __html__ method so nothing needs to be changed. The only
exception is the list of regional pokedexes on the pokemon search page.
[1]: pallets-eco/wtforms#315
Updates #130
Older versions of WTForms are not compatible with SQLAlchemy 1.2 (pallets-eco/wtforms-sqlalchemy#9). We should probably declare a dependency on WTForms>=2.2.
But first we should make sure everything works correctly under WTForms 2.3 (the latest release).
The text was updated successfully, but these errors were encountered: