mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-31 10:26:39 +01:00
Updated for bin repos
This commit is contained in:
parent
25f5a8f924
commit
c83b46308d
1 changed files with 3 additions and 2 deletions
|
@ -18,8 +18,9 @@ class BinQueries(Configs):
|
|||
self.session = Session
|
||||
self.repos = Repositories()
|
||||
|
||||
self.bin_repo: list = self.repos.enabled_repositories
|
||||
if self.repo:
|
||||
if self.repo is None or self.repo == '*':
|
||||
self.bin_repo: list = self.repos.enabled_repositories
|
||||
elif self.repo:
|
||||
self.bin_repo: list = [self.repo]
|
||||
|
||||
self.black = Blacklist()
|
||||
|
|
Loading…
Reference in a new issue