flask-social-example
flask-social-example copied to clipboard
manage.py - ImportError: cannot import name create_app
I cloned the repo and attempted python manage.py
but this resulted in:
ImportError: cannot import name create_app
Should the following in manage.py
:
from app import create_app
manager = Manager(create_app())
...in fact be this?
from app import app
manager = Manager(app)