fix to_bool params

This commit is contained in:
Robert Kaussow 2020-02-04 00:12:03 +01:00
parent 83a173204a
commit 53534716af
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ def _should_do_markup():
py_colors = os.environ.get("PY_COLORS", None)
if py_colors is not None:
return to_bool(py_colors, strict=False)
return to_bool(py_colors)
return sys.stdout.isatty() and os.environ.get("TERM") != "dumb"