Merge pull request #1248 from mmikulicic/force-color

Added a ANSIBLE_FORCE_COLOR env var, which forces the color output
pull/1240/merge
Michael DeHaan 12 years ago
commit d74a61d362

@ -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

Loading…
Cancel
Save