Fix problems with CHEATCOLORS behaviour

This commit is contained in:
Tomas Korbar 2019-01-17 17:10:01 +01:00
parent 4d19505b79
commit 8a8f30679d
1 changed files with 2 additions and 1 deletions

View File

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