diff --git a/ChangeLog.txt b/ChangeLog.txt index db1c590b..0ea3a06d 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -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 diff --git a/slpkg/main.py b/slpkg/main.py index 422c6d4c..0901b10b 100644 --- a/slpkg/main.py +++ b/slpkg/main.py @@ -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):