summaryrefslogtreecommitdiff
path: root/lib/ansible/executor
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2019-02-13 18:39:26 -0800
committerMatt Clay <matt@mystile.com>2019-02-13 23:35:39 -0800
commit3e778d3f8f8c15181afc647a75f9825726bf687e (patch)
tree2cbb5ada34f722a1b17041f0f951925bbb4fc38e /lib/ansible/executor
parent7b8e814a10e0410dc9f26b83016a7f5086ced4d1 (diff)
downloadansible-3e778d3f8f8c15181afc647a75f9825726bf687e.tar.gz
Fix pycodestyle E117 issues.
Diffstat (limited to 'lib/ansible/executor')
-rw-r--r--lib/ansible/executor/task_queue_manager.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ansible/executor/task_queue_manager.py b/lib/ansible/executor/task_queue_manager.py
index 72138322f3..fe3bdab24c 100644
--- a/lib/ansible/executor/task_queue_manager.py
+++ b/lib/ansible/executor/task_queue_manager.py
@@ -162,9 +162,9 @@ class TaskQueueManager:
try:
callback_obj.set_options()
except AttributeError:
- display.deprecated("%s callback, does not support setting 'options', it will work for now, "
- " but this will be required in the future and should be updated, "
- " see the 2.4 porting guide for details." % callback_obj._load_name, version="2.9")
+ display.deprecated("%s callback, does not support setting 'options', it will work for now, "
+ " but this will be required in the future and should be updated, "
+ " see the 2.4 porting guide for details." % callback_obj._load_name, version="2.9")
self._callback_plugins.append(callback_obj)
self._callbacks_loaded = True