mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-26 19:58:50 +01:00
Updated for the title
This commit is contained in:
parent
bf7646a996
commit
ef7330c215
2 changed files with 3 additions and 3 deletions
|
@ -39,11 +39,11 @@ class Dependees(Configs):
|
|||
|
||||
def find(self, repo: str) -> None:
|
||||
""" Collecting the dependees. """
|
||||
self.packages: list = self.utils.apply_package_pattern(self.flags, self.packages, repo)
|
||||
|
||||
print(f"The list below shows the "
|
||||
f"packages that dependees on '{', '.join([p for p in self.packages])}':\n")
|
||||
|
||||
self.packages: list = self.utils.apply_package_pattern(self.flags, self.packages, repo)
|
||||
|
||||
for pkg in self.packages:
|
||||
dependees: list = list(self.find_requires(pkg, repo))
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ class Tracking(Configs):
|
|||
|
||||
def packages(self, packages: list, repo: str) -> None:
|
||||
""" Prints the packages dependencies. """
|
||||
print(f"The list below shows the packages with dependencies:\n")
|
||||
print(f"The list below shows the packages '{', '.join([p for p in packages])}' with dependencies:\n")
|
||||
|
||||
packages: list = self.utils.apply_package_pattern(self.flags, packages, repo)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue