From 8532ddd5ed7dc713cef1cf7440e6f61aabde8f77 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Thu, 17 Sep 2015 08:01:43 -0700 Subject: [PATCH] typo in formatting the warning message --- lib/ansible/plugins/action/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/action/__init__.py b/lib/ansible/plugins/action/__init__.py index e1dbad17013..72f7a3fc9a9 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"