Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Change from log to log with color
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed May 29, 2024
1 parent 7822285 commit 0dd4ff9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cyberdrop_dl/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.3.21"
__version__ = "5.3.22"
2 changes: 1 addition & 1 deletion cyberdrop_dl/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ async def director(manager: Manager) -> None:
clear_screen_proc = await asyncio.create_subprocess_shell('cls' if os.name == 'nt' else 'clear')
await clear_screen_proc.wait()

await log(f"Running Post-Download Processes For Config: {manager.config_manager.loaded_config}...", 20)
await log_with_color(f"Running Post-Download Processes For Config: {manager.config_manager.loaded_config}...", "green", 20)
if isinstance(manager.args_manager.sort_downloads, bool):
if manager.args_manager.sort_downloads:
sorter = Sorter(manager)
Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cyberdrop-dl"
version = "5.3.21"
version = "5.3.22"
description = "Bulk downloader for multiple file hosts"
authors = ["Jules Winnfield <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 0dd4ff9

Please sign in to comment.