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
I was receiving the following deprecation warning when using Flask-WhooshAlchemy:
ExtDeprecationWarning: Importing flask.ext.sqlalchemy is deprecated, use flask_sqlalchemy instead.
I was able to fix this by updating the line import flask.ext.sqlalchemy as flask_sqlalchemy in flask_whooshalchemy.py to import flask_sqlachemy, in order to accommodate the new extension import form.
The text was updated successfully, but these errors were encountered:
Hi,
I was receiving the following deprecation warning when using Flask-WhooshAlchemy:
ExtDeprecationWarning: Importing flask.ext.sqlalchemy is deprecated, use flask_sqlalchemy instead.
I was able to fix this by updating the line
import flask.ext.sqlalchemy as flask_sqlalchemy
in flask_whooshalchemy.py toimport flask_sqlachemy
, in order to accommodate the new extension import form.The text was updated successfully, but these errors were encountered: