Download:
child 71:e5b02a8172dc
parent 69:3d3bd52ec6e2
70:316aa21e0fb9
Anton Shestakov <av6@dwimlabs.net>, Wed, 27 Jul 2016 23:58:19 +0800
viewer: use IOLoop.current() (looks like it's the recommended option)

1 файлов изменено, 1 вставок(+), 1 удалений(-) [+]
viewer.py file | annotate | diff | comparison | revisions
--- a/viewer.py Wed Jul 27 23:57:50 2016 +0800
+++ b/viewer.py Wed Jul 27 23:58:19 2016 +0800
@@ -319,7 +319,7 @@
application = Viewer()
application.listen(options.port, options.listen, xheaders=options.xheaders)
- IOLoop.instance().start()
+ IOLoop.current().start()
if __name__ == '__main__':