From 36512d74c251834ec69bd4d9d589de59e2c32386 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Tue, 21 Apr 2015 16:13:37 -0400 Subject: [PATCH] Unused variable to make pyflakes happy --- awx/main/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/utils.py b/awx/main/utils.py index 3c795fb4f6..be8c44e890 100644 --- a/awx/main/utils.py +++ b/awx/main/utils.py @@ -386,7 +386,7 @@ def emit_websocket_notification(endpoint, event, payload): payload['event'] = event payload['endpoint'] = endpoint websocket.publish(payload) - except Exception as ex: + except Exception: pass _inventory_updates = threading.local()