mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-31 10:26:39 +01:00
Fixed for version
This commit is contained in:
parent
84710c036f
commit
6246e9fa0f
1 changed files with 5 additions and 1 deletions
|
@ -60,7 +60,11 @@ class SearchPackage(Configs):
|
||||||
|
|
||||||
if package in name or package == '*':
|
if package in name or package == '*':
|
||||||
self.matching += 1
|
self.matching += 1
|
||||||
self.data_dict[self.matching] = (repo, name, data_pkg[0])
|
|
||||||
|
if self.is_binary:
|
||||||
|
self.data_dict[self.matching] = (repo, name, data_pkg[0])
|
||||||
|
else:
|
||||||
|
self.data_dict[self.matching] = (repo, name, data_pkg[2])
|
||||||
|
|
||||||
def summary_of_searching(self) -> None:
|
def summary_of_searching(self) -> None:
|
||||||
if self.matching:
|
if self.matching:
|
||||||
|
|
Loading…
Reference in a new issue