summaryrefslogtreecommitdiff
path: root/lib/ansible/utils/display.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/utils/display.py')
-rw-r--r--lib/ansible/utils/display.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/ansible/utils/display.py b/lib/ansible/utils/display.py
index 6c5e850a70..ab3a06a5ed 100644
--- a/lib/ansible/utils/display.py
+++ b/lib/ansible/utils/display.py
@@ -182,10 +182,13 @@ class Display:
(out, err) = cmd.communicate()
self.display("%s\n" % out, color=color)
- def error(self, msg):
- new_msg = "\n[ERROR]: %s" % msg
- wrapped = textwrap.wrap(new_msg, 79)
- new_msg = "\n".join(wrapped) + "\n"
+ def error(self, msg, wrap_text=True):
+ if wrap_text:
+ new_msg = "\n[ERROR]: %s" % msg
+ wrapped = textwrap.wrap(new_msg, 79)
+ new_msg = "\n".join(wrapped) + "\n"
+ else:
+ new_msg = msg
if new_msg not in self._errors:
self.display(new_msg, color='red', stderr=True)
self._errors[new_msg] = 1