mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 08:43:10 +02:00
Fix #1225499 [non translatable "completed" for completed jobs](https://bugs.launchpad.net/calibre/+bug/1225499)
This commit is contained in:
parent
615cd01acb
commit
33875132ab
1 changed files with 1 additions and 1 deletions
|
|
@ -487,7 +487,7 @@ def book_polished(self, job):
|
|||
db.save_original_format(book_id, fmt, notify=False)
|
||||
with open(path, 'rb') as f:
|
||||
db.add_format(book_id, fmt, f, index_is_id=True)
|
||||
self.gui.status_bar.show_message(job.description + (' completed'), 2000)
|
||||
self.gui.status_bar.show_message(job.description + _(' completed'), 2000)
|
||||
try:
|
||||
shutil.rmtree(base)
|
||||
parent = os.path.dirname(base)
|
||||
|
|
|
|||
Loading…
Reference in a new issue