We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"flask.ext" (pallets/flask#1135) has been deprecated a while ago. FdT keeps importing flask_sqlalchemy with flask.ext resulting in warning messages:
exthook.py:71: ExtDeprecationWarning: Importing flask.ext.sqlalchemy is deprecated, use flask_sqlalchemy instead
The text was updated successfully, but these errors were encountered:
How to fixed the warming?
Sorry, something went wrong.
Instead of using::
from flask.ext.sqlalchemy import ...
Use::
from flask_sqlalchemy import ...
Thanks
Dupe of #94
No branches or pull requests
"flask.ext" (pallets/flask#1135) has been deprecated a while ago. FdT keeps importing flask_sqlalchemy with flask.ext resulting in warning messages:
exthook.py:71: ExtDeprecationWarning: Importing flask.ext.sqlalchemy is deprecated, use flask_sqlalchemy instead
The text was updated successfully, but these errors were encountered: