feature/add_merge_command #23

Merged
Hazel merged 3 commits from feature/add_merge_command into experimental 2024-05-07 12:15:08 +00:00
2 changed files with 6 additions and 0 deletions
Showing only changes of commit 08b9492455 - Show all commits

View File

@ -403,6 +403,7 @@ class Page:
self.LOGGER.info(f"{song.option_string} already exists, thus not downloading again.")
return r
source = None
if not found_on_disc:
for source in sources:
r = self.download_song_to_target(source=source, target=temp_target, desc=song.option_string)

View File

@ -19,8 +19,13 @@ def _apply_color(msg: str, color: BColors) -> str:
if not isinstance(msg, str):
msg = str(msg)
endc = BColors.ENDC.value
if color is BColors.ENDC:
return msg
msg = msg.replace(BColors.ENDC.value, BColors.ENDC.value + color.value)
return color.value + msg + BColors.ENDC.value