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

Commit

Permalink
Fix nonetype exc
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed May 29, 2024
1 parent 0dd4ff9 commit 0e36432
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 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.22"
__version__ = "5.3.23"
3 changes: 2 additions & 1 deletion cyberdrop_dl/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ async def director(manager: Manager) -> None:
if len(logger.handlers) > 0:
await log("Picking new config...", 20)

configs_to_run = list(set(configs) - set(configs_ran)).sort()
configs_to_run = list(set(configs) - set(configs_ran))
configs_to_run.sort()
manager.config_manager.change_config(configs_to_run[0])
configs_ran.append(configs_to_run[0])
if len(logger.handlers) > 0:
Expand Down
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.22"
version = "5.3.23"
description = "Bulk downloader for multiple file hosts"
authors = ["Jules Winnfield <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 0e36432

Please sign in to comment.