From ae8bfdcb51ae0437876467c231068b7dd9b7a5ea Mon Sep 17 00:00:00 2001 From: SomberNight Date: Tue, 18 Feb 2025 15:36:27 +0000 Subject: [PATCH] qt: main_window: (trivial) fix typo on statusbar a whitespace was missing --- electrum/gui/qt/main_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py index f2682e276..104afe4c8 100644 --- a/electrum/gui/qt/main_window.py +++ b/electrum/gui/qt/main_window.py @@ -1029,9 +1029,9 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger, QtEventListener): name = '' elif num_tasks == 1: with self._coroutines_scheduled_lock: - name = list(self._coroutines_scheduled.values())[0] + '...' + name = list(self._coroutines_scheduled.values())[0] + '...' else: - name = "%d"%num_tasks + _('tasks') + '...' + name = f"{num_tasks} " + _('tasks') + '...' self.tasks_label.setText(name) self.tasks_label.setVisible(num_tasks > 0)