mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-29 20:34:22 +01:00
Fixed for new line
This commit is contained in:
parent
d0b9a06a87
commit
ff50e5cfe9
1 changed files with 3 additions and 1 deletions
|
@ -35,6 +35,7 @@ class ViewPackage(Configs):
|
|||
|
||||
def slackbuild(self, data: dict, slackbuilds: list) -> None:
|
||||
""" View slackbuild packages information. """
|
||||
print()
|
||||
repo: dict = {
|
||||
self.repos.sbo_repo_name: self.repos.sbo_repo_tar_suffix,
|
||||
self.repos.ponce_repo_name: str()
|
||||
|
@ -110,10 +111,11 @@ class ViewPackage(Configs):
|
|||
f"SBo url: {self.blue}{self.mirror}{item['location']}/{name}{self.endc}\n"
|
||||
f"Maintainer: {self.yellow}{self.maintainer}{self.endc}\n"
|
||||
f"Email: {self.yellow}{self.email}{self.endc}\n"
|
||||
f"\nREADME: {self.cyan}{''.join(self.readme)}{self.endc}")
|
||||
f"README: {self.cyan}{''.join(self.readme)}{self.endc}")
|
||||
|
||||
def package(self, data: dict, packages: list) -> None:
|
||||
""" View binary packages information. """
|
||||
print()
|
||||
self.repository_packages: tuple = tuple(data.keys())
|
||||
for package in packages:
|
||||
for name, item in data.items():
|
||||
|
|
Loading…
Add table
Reference in a new issue