From 59f1eceb8ef82b9062f79364b59fbbed40a90035 Mon Sep 17 00:00:00 2001 From: Tim Sorbera Date: Thu, 22 Jun 2017 18:36:27 -0500 Subject: [PATCH] update app.py to have consistent spacing (#3659) shouldn't have both tabs and spaces in the same file --- get-started/part2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-started/part2.md b/get-started/part2.md index 7b1a48b9e3..4c2cc22558 100644 --- a/get-started/part2.md +++ b/get-started/part2.md @@ -126,7 +126,7 @@ def hello(): return html.format(name=os.getenv("NAME", "world"), hostname=socket.gethostname(), visits=visits) if __name__ == "__main__": - app.run(host='0.0.0.0', port=80) + app.run(host='0.0.0.0', port=80) ``` Now we see that `pip install -r requirements.txt` installs the Flask and Redis