From 6e2be4066a7e3d7cd2ea1ad54300c09b213f9d9c Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Thu, 6 Mar 2025 12:14:43 +0100 Subject: [PATCH] Added reference bugs --- main.py | 2 +- pkgmgr/list_repositories.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 6156062..7554751 100644 --- a/main.py +++ b/main.py @@ -76,7 +76,7 @@ For detailed help on each command, use: "--all", action="store_true", default=False, - help="Apply the subcommand to all repositories in the config. Some commands ask for confirmation. If you want to give this confirmation for all repositories, pipe 'yes'. E.g: yes | pkgmgr {subcommand} --all" + help="Apply the subcommand to all repositories in the config. Some subcommands ask for confirmation. If you want to give this confirmation for all repositories, pipe 'yes'. E.g: yes | pkgmgr {subcommand} --all" ) subparser.add_argument("--preview", action="store_true", help="Preview changes without executing commands") subparser.add_argument("--list", action="store_true", help="List affected repositories (with preview or status)") diff --git a/pkgmgr/list_repositories.py b/pkgmgr/list_repositories.py index 3b6f269..614c3a8 100644 --- a/pkgmgr/list_repositories.py +++ b/pkgmgr/list_repositories.py @@ -1,5 +1,6 @@ import os - +from pkgmgr.get_repo_identifier import get_repo_identifier +from pkgmgr.get_repo_dir import get_repo_dir def list_repositories(all_repos, repositories_base_dir, bin_dir, search_filter="", status_filter=""): """ List all repositories with their attributes and status information.