Fixed BrokenPipeError

This commit is contained in:
Dimitris Zlatanidis 2024-04-09 11:55:12 +03:00
parent e67861e9be
commit 42e9855517
2 changed files with 6 additions and 0 deletions

View file

@ -11,6 +11,9 @@
* Fixed alignment in search command
* Updated salixos mirrors
- Fixed:
* Fixed BrokenPipeError: [Errno 32] Broken pipe
### 5.0.4 - 04/04/2024
- Updated:
* Updated to ignore blacklist installed packages

View file

@ -28,6 +28,9 @@ from slpkg.views.view_package import ViewPackage
from slpkg.remove_packages import RemovePackages
from slpkg.update_repositories import UpdateRepositories
from signal import signal, SIGPIPE, SIG_DFL
signal(SIGPIPE, SIG_DFL)
class Menu(Configs):