From 57a3594883257fe9a566e99d33654f9d04f8df02 Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Fri, 22 Mar 2024 18:06:41 +0200 Subject: [PATCH] Fix for new line --- slpkg/check_updates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slpkg/check_updates.py b/slpkg/check_updates.py index 71c914a8..e1a5d844 100644 --- a/slpkg/check_updates.py +++ b/slpkg/check_updates.py @@ -144,5 +144,5 @@ class CheckUpdates(Configs): process_2.terminate() # Restore the terminal cursor - print('\x1b[?25h', self.endc) + print('\x1b[?25h', self.endc, end='') return queue.get()