From 09ed05db000e065038ccbcfaf53a7680203e8c6a Mon Sep 17 00:00:00 2001 From: Jules-WinnfieldX Date: Fri, 15 Mar 2024 19:46:18 -0600 Subject: [PATCH] Fix missing args. --- cyberdrop_dl/__init__.py | 2 +- cyberdrop_dl/ui/ui.py | 4 ++-- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cyberdrop_dl/__init__.py b/cyberdrop_dl/__init__.py index f01f6b73b..edaa848cc 100644 --- a/cyberdrop_dl/__init__.py +++ b/cyberdrop_dl/__init__.py @@ -1 +1 @@ -__version__ = "5.2.6" \ No newline at end of file +__version__ = "5.2.7" \ No newline at end of file diff --git a/cyberdrop_dl/ui/ui.py b/cyberdrop_dl/ui/ui.py index a500d9d60..2714f7127 100644 --- a/cyberdrop_dl/ui/ui.py +++ b/cyberdrop_dl/ui/ui.py @@ -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 @@ -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.", diff --git a/pyproject.toml b/pyproject.toml index 1bc204024..072641b33 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] readme = "README.md"