From cbfd1302c0ac436cfd25730c6a8f5437c28cc40f Mon Sep 17 00:00:00 2001
From: Matthew Mutiso <6734562+mmutiso@users.noreply.github.com>
Date: Thu, 8 Aug 2019 00:31:22 +0300
Subject: [PATCH] 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 919d6ed77..a012ab9da 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 `_.
+`Blueprints are Flask's reusable apps `_.
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