mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-26 09:58:31 +01:00
Updated for sorted
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
57c53a15c0
commit
5246b0ab3c
2 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
## slpkg - ChangeLog
|
||||
|
||||
### 5.0.7 - 01/05/2024
|
||||
### 5.0.7 - 05/05/2024
|
||||
|
||||
- Fixed:
|
||||
* Fixed raise error message instead toml error message
|
||||
|
@ -9,6 +9,7 @@
|
|||
- Updated:
|
||||
* Improved code quality
|
||||
* Updated for check gpg key imported
|
||||
* Updated for sort the output of the search command (Thanks to marav)
|
||||
|
||||
- Added:
|
||||
* Total file size with find command
|
||||
|
|
|
@ -59,7 +59,7 @@ class SearchPackage(Configs): # pylint: disable=[R0902]
|
|||
repo (str): repository name.
|
||||
"""
|
||||
for package in self.packages:
|
||||
for name, data_pkg in self.repo_data.items():
|
||||
for name, data_pkg in sorted(self.repo_data.items()):
|
||||
|
||||
if package in name or package == '*' or self.is_not_case_sensitive(package, name):
|
||||
self.matching += 1
|
||||
|
|
Loading…
Reference in a new issue