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.