From f9acb16314fec0b91a35b807ab2cb1d163bb1a4a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 20 Feb 2022 14:14:32 +0530 Subject: [PATCH] ... --- src/calibre/gui2/jobs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/jobs.py b/src/calibre/gui2/jobs.py index 9f462ab70e..18547aa3df 100644 --- a/src/calibre/gui2/jobs.py +++ b/src/calibre/gui2/jobs.py @@ -527,7 +527,7 @@ class JobsButton(QWidget): # {{{ def update_label(self): n = self.jobs() prefix = '' if n > 0 else '' - self._jobs.setText(prefix + _('Jobs:') + f' {n} ') + self._jobs.setText(prefix + ' ' + _('Jobs:') + f' {n} ') def event(self, ev): m = None