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

Commit

Permalink
Fix missing args.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed Mar 16, 2024
1 parent 5e4f899 commit 09ed05d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.2.6"
__version__ = "5.2.7"
4 changes: 2 additions & 2 deletions cyberdrop_dl/ui/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def program_ui(manager: Manager):
# Change Default Config
if action == 1:
configs = manager.config_manager.get_configs()
selected_config = select_config_prompt(configs)
selected_config = select_config_prompt(manager, configs)
manager.config_manager.change_default_config(selected_config)

# Create A Config
Expand All @@ -101,7 +101,7 @@ def program_ui(manager: Manager):
elif action == 3:
configs = manager.config_manager.get_configs()
if len(configs) != 1:
selected_config = select_config_prompt(configs)
selected_config = select_config_prompt(manager, configs)
if selected_config == manager.config_manager.loaded_config:
inquirer.confirm(
message="You cannot delete the currently active config, press enter to continue.",
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.2.6"
version = "5.2.7"
description = "Bulk downloader for multiple file hosts"
authors = ["Jules Winnfield <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 09ed05d

Please sign in to comment.