diff options
author | Alex Willmer <alex@moreati.org.uk> | 2021-03-23 16:08:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-23 16:08:44 +0100 |
commit | 6856e751ff3a298ea74dedd85848627bb821ae36 (patch) | |
tree | 6217b57133fe15ac0eaffe7a196f3b39b4e9290a | |
parent | less blocking on fact reading (#73951) (diff) | |
download | ansible-6856e751ff3a298ea74dedd85848627bb821ae36.tar.xz ansible-6856e751ff3a298ea74dedd85848627bb821ae36.zip |
Fix trailing whitespace in Conditional debug() (#73956)
Signed-off-by: Alex Willmer <alex@moreati.org.uk>
-rw-r--r-- | lib/ansible/playbook/conditional.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/playbook/conditional.py b/lib/ansible/playbook/conditional.py index a34b43e132..5653437941 100644 --- a/lib/ansible/playbook/conditional.py +++ b/lib/ansible/playbook/conditional.py @@ -104,7 +104,7 @@ class Conditional: if result: result = res - display.debug("Evaluated conditional (%s): %s " % (conditional, res)) + display.debug("Evaluated conditional (%s): %s" % (conditional, res)) if not result: break |