Compare commits

..

No commits in common. "93ec7177579986596db5d7cfe092b732883beccf" and "9916e6657840a918ceeb409a85166559f3eb5a37" have entirely different histories.

View File

@ -625,16 +625,13 @@ class YoutubeDL:
'Overwriting params from "color" with "no_color"')
self.params['color'] = 'no_color'
term_allow_color = os.getenv('TERM', '').lower() != 'dumb'
no_color = bool(os.getenv('NO_COLOR'))
term_allow_color = os.getenv('TERM', '').lower() != 'dumb' and not os.getenv('NO_COLOR')
def process_color_policy(stream):
stream_name = {sys.stdout: 'stdout', sys.stderr: 'stderr'}[stream]
policy = traverse_obj(self.params, ('color', (stream_name, None), {str}), get_all=False)
if policy in ('auto', None):
if term_allow_color and supports_terminal_sequences(stream):
return 'no_color' if no_color else True
return False
return term_allow_color and supports_terminal_sequences(stream)
assert policy in ('always', 'never', 'no_color'), policy
return {'always': True, 'never': False}.get(policy, policy)