mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-26 09:58:31 +01:00
Updated colors
This commit is contained in:
parent
9e0aa1e346
commit
b4e010dbb1
1 changed files with 2 additions and 2 deletions
|
@ -56,10 +56,10 @@ class ViewPackage(Configs):
|
|||
if line.startswith('EMAIL'):
|
||||
email = line[7:-1].strip()
|
||||
|
||||
deps = (', '.join([f'{pkg}' for pkg in info[2].split()]))
|
||||
deps = (', '.join([f'{cyan}{pkg}' for pkg in info[2].split()]))
|
||||
|
||||
if self.flag_repo_version in self.flags:
|
||||
deps = (', '.join([f'{pkg} ({SBoQueries(pkg).version()})' for pkg in info[2].split()]))
|
||||
deps = (', '.join([f'{cyan}{pkg}{endc}-{yellow}{SBoQueries(pkg).version()}{green}' for pkg in info[2].split()]))
|
||||
|
||||
print(f'Name: {green}{info[0]}{endc}\n'
|
||||
f'Version: {green}{info[1]}{endc}\n'
|
||||
|
|
Loading…
Reference in a new issue