mirror of
https://github.com/cheat/cheat.git
synced 2024-12-18 10:45:05 +01:00
Fix problems with CHEATCOLORS behaviour
This commit is contained in:
parent
4d19505b79
commit
8a8f30679d
@ -33,7 +33,8 @@ class Utils:
|
||||
""" Colorizes cheatsheet content if so configured """
|
||||
|
||||
# only colorize if configured to do so, and if stdout is a tty
|
||||
if not self._displaycolors or not sys.stdout.isatty():
|
||||
if (self._displaycolors not in ["True", "true", "1", 1] or
|
||||
not sys.stdout.isatty()):
|
||||
return sheet_content
|
||||
|
||||
# don't attempt to colorize an empty cheatsheet
|
||||
|
Loading…
Reference in New Issue
Block a user