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
Hi, when i try to follow the example on http://flask-sso.readthedocs.io/en/latest/#a-minimal-example I get the following error:
@sso.login_handler NameError: name 'sso' is not defined
As described in the docs i defined
app = Flask(__name__) ... ext = SSO(app=app)
Shouldn't it be sso = SSO(app=app) or @ext.login_handler
sso = SSO(app=app)
@ext.login_handler
The text was updated successfully, but these errors were encountered:
@mlechner thanks for spotting it! I propose:
-ext = SSO(app=app) +sso = SSO(app=app)
Sorry, something went wrong.
FYI docs still not updated to reflect this. I had a few minutes of panic/scrambling before realizing this
docs: fix a typo in extension instance name
0e00bd4
(closes #22)
No branches or pull requests
Hi, when i try to follow the example on http://flask-sso.readthedocs.io/en/latest/#a-minimal-example I get the following error:
As described in the docs i defined
Shouldn't it be
sso = SSO(app=app)
or
@ext.login_handler
The text was updated successfully, but these errors were encountered: