Update to fix the broken blueprints link (#7949)

* Updated to fix the broken blueprints link

The current link is http://flask.pocoo.org/docs/0.12/blueprints/ which redirects to a non-existent page. The new link is https://flask.palletsprojects.com/en/1.1.x/tutorial/views/.

* Link to the current Flask version(1.0.x)
This commit is contained in:
Matthew Mutiso 2019-08-08 00:31:22 +03:00 committed by John Bodley
parent 8cd8ec16d5
commit cbfd1302c0
1 changed files with 1 additions and 1 deletions

View File

@ -1054,7 +1054,7 @@ your environment. See `CONTRIBUTING.md#setup-local-environment-for-development <
Blueprints
----------
`Blueprints are Flask's reusable apps <http://flask.pocoo.org/docs/0.12/blueprints/>`_.
`Blueprints are Flask's reusable apps <https://flask.palletsprojects.com/en/1.0.x/tutorial/views/>`_.
Superset allows you to specify an array of Blueprints
in your ``superset_config`` module. Here's
an example of how this can work with a simple Blueprint. By doing