mirror of
https://github.com/netinvent/npbackup.git
synced 2025-09-12 16:04:48 +08:00
Fix operations multi-repo selection
This commit is contained in:
parent
445f0219d5
commit
743063d541
1 changed files with 3 additions and 3 deletions
|
@ -190,9 +190,9 @@ def operations_gui(full_config: dict) -> dict:
|
|||
continue
|
||||
repos = complete_repo_list
|
||||
else:
|
||||
repos = complete_repo_list.index(
|
||||
values["repo-list"]
|
||||
) # TODO multi select
|
||||
repos = []
|
||||
for value in values["repo-list"]:
|
||||
repos.append(complete_repo_list[value])
|
||||
|
||||
repo_config_list = []
|
||||
for repo_name, backend_type, repo_uri in repos:
|
||||
|
|
Loading…
Add table
Reference in a new issue