From 1d8321a8dd9bac171920631f5dfa839d01c7afca Mon Sep 17 00:00:00 2001 From: Brian Duggan Date: Tue, 22 May 2018 14:07:36 -0400 Subject: [PATCH] Add a nice message when starting the server --- app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app.py b/app.py index 19782aff..e5dbda82 100755 --- a/app.py +++ b/app.py @@ -20,4 +20,5 @@ def make_app(): if __name__ == "__main__": app = make_app() app.listen(8888) + print("Listening on http://localhost:8888") tornado.ioloop.IOLoop.current().start()