From 5dc5f04291bb1e7448ad5e2965deaa66589c0ff1 Mon Sep 17 00:00:00 2001 From: Mark Boyd <10804241+markalanboyd@users.noreply.github.com> Date: Tue, 31 Oct 2023 09:37:51 +0100 Subject: [PATCH] Update factory.rst It appears that you need to put a trailing backslash on this route for it to work. --- docs/tutorial/factory.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/factory.rst b/docs/tutorial/factory.rst index 39febd13..880412b3 100644 --- a/docs/tutorial/factory.rst +++ b/docs/tutorial/factory.rst @@ -62,7 +62,7 @@ directory should be treated as a package. pass # a simple page that says hello - @app.route('/hello') + @app.route('/hello/') def hello(): return 'Hello, World!'