update app.py to have consistent spacing (#3659)

shouldn't have both tabs and spaces in the same file
This commit is contained in:
Tim Sorbera 2017-06-22 18:36:27 -05:00 committed by Misty Stanley-Jones
parent 483a8a8370
commit 59f1eceb8e
1 changed files with 1 additions and 1 deletions

View File

@ -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