From 5a75da5471f47b4e7fa96bf41290b3d9a6d1a818 Mon Sep 17 00:00:00 2001 From: "Aaron Hall, MBA" Date: Mon, 30 Apr 2018 21:28:53 -0400 Subject: [PATCH 1/2] add missing port to localhost URL --- docs/tutorial/static.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/static.rst b/docs/tutorial/static.rst index 29548e04..8e76c409 100644 --- a/docs/tutorial/static.rst +++ b/docs/tutorial/static.rst @@ -55,7 +55,7 @@ the following into the ``flaskr/static/style.css`` file: You can find a less compact version of ``style.css`` in the :gh:`example code `. -Go to http://127.0.0.1/auth/login and the page should look like the +Go to http://127.0.0.1:5000/auth/login and the page should look like the screenshot below. .. image:: flaskr_login.png From 3fd7abec3c8c4a32da9579d0824b10d5ba0add83 Mon Sep 17 00:00:00 2001 From: David Lord Date: Mon, 30 Apr 2018 19:05:46 -0700 Subject: [PATCH 2/2] fix project urls --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a97d4212..4e1cdfdf 100755 --- a/setup.py +++ b/setup.py @@ -18,8 +18,8 @@ setup( url='https://www.palletsprojects.com/p/flask/', project_urls=OrderedDict(( ('Documentation', 'http://flask.pocoo.org/docs/'), - ('Code', 'https://github.com/pallets/pallets-sphinx-themes'), - ('Issue tracker', 'https://github.com/pallets/pallets-sphinx-themes/issues'), + ('Code', 'https://github.com/pallets/flask'), + ('Issue tracker', 'https://github.com/pallets/flask/issues'), )), license='BSD', author='Armin Ronacher',