Commit cc82e7dd by Marko Mikulicic

Added a ANSIBLE_FORCE_COLOR env var, which forces the color output no matter what ncurses says.

parent a1c23af6
......@@ -36,6 +36,9 @@ else:
# curses returns an error (e.g. could not find terminal)
ANSIBLE_COLOR=False
if os.getenv("ANSIBLE_FORCE_COLOR") is not None:
ANSIBLE_COLOR=True
# --- begin "pretty"
#
# pretty - A miniature library that provides a Python print and stdout
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment