From 4d616fad36bdacee7903a2eeeac41156d282c0e8 Mon Sep 17 00:00:00 2001 From: John Washam Date: Wed, 29 Jun 2016 17:20:15 -0700 Subject: [PATCH] Updating test. --- index.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.py b/index.py index 4b059ec9..992b4fc9 100644 --- a/index.py +++ b/index.py @@ -5,8 +5,8 @@ @app.route('/') def hello_world(): - return 'Hello World!' + return 'Hello World, you ready to learn?' if __name__ == '__main__': - app.run() + app.run(host='0.0.0.0', port=8080)