forked from borgmatic-collective/borgmatic
Fix color configuration directive
This commit is contained in:
parent
424cc6b66c
commit
37735e464c
1 changed files with 1 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ def should_do_markup(no_color, configs):
|
|||
if no_color:
|
||||
return False
|
||||
|
||||
if any(config.get('output', {}).get('color') is False for config in configs.values()):
|
||||
if any(config.get('color', True) is False for config in configs.values()):
|
||||
return False
|
||||
|
||||
if os.environ.get('NO_COLOR', None):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue