From 4d6debcfd331d767a509a24cd7545a4367193977 Mon Sep 17 00:00:00 2001 From: Lachlan Eagling Date: Sun, 14 Oct 2018 08:11:02 +1100 Subject: [PATCH] Fix formatting issue (#18642) --- .../web-frameworks-and-what-they-do-for-you/bottle/index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/client/src/pages/guide/english/python/web-frameworks-and-what-they-do-for-you/bottle/index.md b/client/src/pages/guide/english/python/web-frameworks-and-what-they-do-for-you/bottle/index.md index 84af42d1f6..f66754d080 100644 --- a/client/src/pages/guide/english/python/web-frameworks-and-what-they-do-for-you/bottle/index.md +++ b/client/src/pages/guide/english/python/web-frameworks-and-what-they-do-for-you/bottle/index.md @@ -58,7 +58,6 @@ The following details how to write and run a simple greeting web app where we ca If we enter our name and press submit now we will get a `HTTP 404` error though as we have not yet defined the function to respond to this request. - ```python run(host='localhost', port=8080) ```