--match-filter - to interactively ask for each video

This commit is contained in:
pukkandan 2022-04-28 20:03:26 +05:30
parent 59f943cd50
commit 492272fed6
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
5 changed files with 28 additions and 7 deletions

View file

@ -69,6 +69,7 @@ def format_text(text, f):
raise SyntaxError(f'Invalid format {" ".join(tokens)!r} in {f!r}')
if fg_color or bg_color:
text = text.replace(CONTROL_SEQUENCES['RESET'], f'{fg_color}{bg_color}')
return f'{fg_color}{bg_color}{text}{CONTROL_SEQUENCES["RESET"]}'
else:
return text