diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 03:40:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 03:40:49 +0000 |
commit | 293d3ceaedc60c45e9abe78fee1480d8fb0aae95 (patch) | |
tree | 13860e4bbb3aba054d735643c3d3cf651de11e36 /python | |
parent | Adding upstream version 115.11.0esr. (diff) | |
download | firefox-esr-293d3ceaedc60c45e9abe78fee1480d8fb0aae95.tar.xz firefox-esr-293d3ceaedc60c45e9abe78fee1480d8fb0aae95.zip |
Adding upstream version 115.12.0esr.upstream/115.12.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'python')
-rw-r--r-- | python/mach/mach/logging.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/mach/mach/logging.py b/python/mach/mach/logging.py index d39f336cc0..cad5201a6b 100644 --- a/python/mach/mach/logging.py +++ b/python/mach/mach/logging.py @@ -47,6 +47,9 @@ def enable_blessed(): if os.environ.get("NO_ANSI"): return False + if not os.environ.get("MOZILLABUILD"): + return False + # MozillaBuild 4.0.2 is the first Release that supports # ANSI escape sequences, so if we're greater than that # version, we can enable them (via Blessed). |