From 2410b423b85cd96f8f7b23e7c2844de917e5010d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Crist=C3=B3bal=20Ganter?= Date: Thu, 2 Jun 2016 18:07:15 -0400 Subject: [PATCH] Changed IOLoop.instance() for IOLoop.current() as specified in the documentation. --- server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.py b/server.py index 07a9707..1ae66ee 100644 --- a/server.py +++ b/server.py @@ -16,7 +16,7 @@ def main(): #app will listen on port 80 app.listen(80) #Starting the server - IOLoop.instance().start() + IOLoop.current().start() except KeyboardInterrupt: exit()