From ef4db112f1052275816ebf4d4b7617e37e0c6cfd Mon Sep 17 00:00:00 2001 From: grossmj Date: Wed, 29 Aug 2018 17:27:24 +0700 Subject: [PATCH] Fix typo. --- gns3server/handlers/api/controller/notification_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/handlers/api/controller/notification_handler.py b/gns3server/handlers/api/controller/notification_handler.py index 2fea4efd..be64a9f3 100644 --- a/gns3server/handlers/api/controller/notification_handler.py +++ b/gns3server/handlers/api/controller/notification_handler.py @@ -72,7 +72,7 @@ class NotificationHandler: yield from ws.prepare(request) asyncio_ensure_future(process_websocket(ws)) - with controller.notification.controler_queue() as queue: + with controller.notification.controller_queue() as queue: while True: try: notification = yield from queue.get_json(5)