From 5394a73f840a50b4383ab0b53f057aa09ec9a5bb Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Mon, 2 Dec 2019 11:39:08 -0300 Subject: [PATCH] [aur][pacman] improving comments --- bauh/gems/arch/pacman.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bauh/gems/arch/pacman.py b/bauh/gems/arch/pacman.py index 11c551da..06fe978f 100644 --- a/bauh/gems/arch/pacman.py +++ b/bauh/gems/arch/pacman.py @@ -39,7 +39,7 @@ def get_mirrors(pkgs: Set[str]) -> dict: not_found = {pkg for pkg in pkgs if pkg not in mirrors} - if not_found: # if there are any not found, try to find via the single method: + if not_found: # if there are some packages not found, try to find via the single method: for dep in not_found: mirror_data = get_mirror(dep)