From a9322e8b8b39e0e0685e36b5ab8d1ef76b504d12 Mon Sep 17 00:00:00 2001 From: nitzmahone Date: Tue, 23 Aug 2016 19:55:39 -0700 Subject: [PATCH] py3-friendly multi-exception fix for missing fileno under debugger --- lib/ansible/executor/process/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/executor/process/worker.py b/lib/ansible/executor/process/worker.py index 7119d3c8aa..ffe9f427bd 100644 --- a/lib/ansible/executor/process/worker.py +++ b/lib/ansible/executor/process/worker.py @@ -89,7 +89,7 @@ class WorkerProcess(multiprocessing.Process): # not a valid file descriptor, so we just rely on # using the one that was passed in pass - except AttributeError, ValueError: + except (AttributeError, ValueError): # couldn't get stdin's fileno, so we just carry on pass