This is an automated email from the ASF dual-hosted git repository.
johnbodley pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new cbfd130 Update to fix the broken blueprints link (#7949)
cbfd130 is described below
commit cbfd1302c0ac436cfd25730c6a8f5437c28cc40f
Author: Matthew Mutiso <[email protected]>
AuthorDate: Thu Aug 8 00:31:22 2019 +0300
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)
---
docs/installation.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/installation.rst b/docs/installation.rst
index 919d6ed..a012ab9 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -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