summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2015-09-17 08:01:43 -0700
committerToshio Kuratomi <toshio@fedoraproject.org>2015-09-17 08:01:43 -0700
commit8532ddd5ed7dc713cef1cf7440e6f61aabde8f77 (patch)
treebe865f6a48bec536ed7a94578af3018822714350
parent4ae5512fb0a9b6a74062d0b4509550e2c5127971 (diff)
downloadansible-8532ddd5ed7dc713cef1cf7440e6f61aabde8f77.tar.gz
typo in formatting the warning message
-rw-r--r--lib/ansible/plugins/action/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/plugins/action/__init__.py b/lib/ansible/plugins/action/__init__.py
index e1dbad1701..72f7a3fc9a 100644
--- a/lib/ansible/plugins/action/__init__.py
+++ b/lib/ansible/plugins/action/__init__.py
@@ -275,7 +275,7 @@ class ActionBase:
return data2.split()[0]
except IndexError:
self._display.warning("Calculating checksum failed unusually, please report this to " + \
- "the list so it can be fixed\ncommand: %s\n----\noutput: %s\n----\n") % (cmd, data)
+ "the list so it can be fixed\ncommand: %s\n----\noutput: %s\n----\n" % (cmd, data))
# this will signal that it changed and allow things to keep going
return "INVALIDCHECKSUM"