mirror of https://github.com/cheat/cheat.git
Merge pull request #403 from sundar-raman/master
Disable colorized output when CHEATCOLORS is not "true", or not set
This commit is contained in:
commit
35c4a8d639
|
@ -8,7 +8,7 @@ def colorize(sheet_content):
|
|||
""" Colorizes cheatsheet content if so configured """
|
||||
|
||||
# only colorize if so configured
|
||||
if not 'CHEATCOLORS' in os.environ:
|
||||
if not 'CHEATCOLORS' in os.environ or os.environ.get('CHEATCOLORS') != 'true':
|
||||
return sheet_content
|
||||
|
||||
try:
|
||||
|
|
Loading…
Reference in New Issue