mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
Fixed BrokenPipeError
This commit is contained in:
parent
e67861e9be
commit
42e9855517
2 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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):
|
||||
|
||||
|
|
Loading…
Reference in a new issue