Update factory.rst

It appears that you need to put a trailing backslash on this route for it to work.
This commit is contained in:
Mark Boyd 2023-10-31 09:37:51 +01:00
parent 8d9519df09
commit 5dc5f04291

View file

@ -62,7 +62,7 @@ directory should be treated as a package.
pass pass
# a simple page that says hello # a simple page that says hello
@app.route('/hello') @app.route('/hello/')
def hello(): def hello():
return 'Hello, World!' return 'Hello, World!'