diff --git a/slpkg/search.py b/slpkg/search.py index 163414bd..8e6872db 100644 --- a/slpkg/search.py +++ b/slpkg/search.py @@ -61,7 +61,7 @@ class SearchPackage(Configs): if package in name or package == '*': self.matching += 1 - if self.is_binary: + if self.utils.is_binary_repo(repo): self.data_dict[self.matching] = (repo, name, data_pkg[0]) else: self.data_dict[self.matching] = (repo, name, data_pkg[2])