diff --git a/slpkg/check_updates.py b/slpkg/check_updates.py index 7c26af87..4f863a73 100644 --- a/slpkg/check_updates.py +++ b/slpkg/check_updates.py @@ -65,4 +65,4 @@ class CheckUpdates(Configs): p2.join() # Restore the terminal cursor - print('\x1b[?25h') + print('\x1b[?25h', self.endc) diff --git a/slpkg/downloader.py b/slpkg/downloader.py index fa069f8e..9baaaa94 100644 --- a/slpkg/downloader.py +++ b/slpkg/downloader.py @@ -95,7 +95,7 @@ class Downloader(Configs, Utilities): p2.join() # Restore the terminal cursor - print('\x1b[?25h') + print('\x1b[?25h', self.endc) else: self.wget() diff --git a/slpkg/remove_packages.py b/slpkg/remove_packages.py index 8afcf895..392c2517 100644 --- a/slpkg/remove_packages.py +++ b/slpkg/remove_packages.py @@ -114,7 +114,7 @@ class RemovePackages(Configs): p2.join() # Restore the terminal cursor - print('\x1b[?25h') + print('\x1b[?25h', self.endc) else: self.process(command) diff --git a/slpkg/slackbuild.py b/slpkg/slackbuild.py index 2d1b6758..d9478a79 100644 --- a/slpkg/slackbuild.py +++ b/slpkg/slackbuild.py @@ -302,7 +302,7 @@ class Slackbuilds(Configs): p2.join() # Restore the terminal cursor - print('\x1b[?25h') + print('\x1b[?25h', self.endc) else: self.process(command) diff --git a/slpkg/update_repository.py b/slpkg/update_repository.py index bd82539b..5d98d7c9 100644 --- a/slpkg/update_repository.py +++ b/slpkg/update_repository.py @@ -77,7 +77,7 @@ class UpdateRepository(Configs): p2.join() # Restore the terminal cursor - print('\x1b[?25h', end='') + print('\x1b[?25h', self.endc, end='') self.sbo()