From 07c3107cfe788923263d9474a4b208bc71e39737 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Tue, 14 Apr 2015 19:03:18 -0400 Subject: [PATCH] Fix the name of the exported class ( pylint ) --- v2/ansible/executor/process/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/ansible/executor/process/worker.py b/v2/ansible/executor/process/worker.py index 8e624fe401e..f24e6abd5e0 100644 --- a/v2/ansible/executor/process/worker.py +++ b/v2/ansible/executor/process/worker.py @@ -41,7 +41,7 @@ from ansible.playbook.task import Task from ansible.utils.debug import debug -__all__ = ['ExecutorProcess'] +__all__ = ['WorkerProcess'] class WorkerProcess(multiprocessing.Process):