summaryrefslogtreecommitdiff
path: root/lib/ansible/plugins/action/pause.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/plugins/action/pause.py')
-rw-r--r--lib/ansible/plugins/action/pause.py15
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/ansible/plugins/action/pause.py b/lib/ansible/plugins/action/pause.py
index 5a70e550b1..478b8db0a1 100644
--- a/lib/ansible/plugins/action/pause.py
+++ b/lib/ansible/plugins/action/pause.py
@@ -59,13 +59,13 @@ class ActionModule(ActionBase):
prompt = None
seconds = None
result.update(dict(
- changed = False,
- rc = 0,
- stderr = '',
- stdout = '',
- start = None,
- stop = None,
- delta = None,
+ changed=False,
+ rc=0,
+ stderr='',
+ stdout='',
+ start=None,
+ stop=None,
+ delta=None,
))
# Is 'args' empty, then this is the default prompted pause
@@ -163,7 +163,6 @@ class ActionModule(ActionBase):
else:
raise AnsibleError('user requested abort!')
-
except AnsibleTimeoutExceeded:
# this is the exception we expect when the alarm signal
# fires, so we simply ignore it to move into the cleanup