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