From c162b14c6145f67d6ded2fcbdcf3679a54fc19a3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 31 Jul 2025 07:32:43 +0530 Subject: [PATCH] string changes --- src/calibre/db/cli/cmd_fts_index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/db/cli/cmd_fts_index.py b/src/calibre/db/cli/cmd_fts_index.py index f0f85d9311..f479325f6d 100644 --- a/src/calibre/db/cli/cmd_fts_index.py +++ b/src/calibre/db/cli/cmd_fts_index.py @@ -104,7 +104,7 @@ def show_progress(left, total, rate): from calibre.db.utils import IndexingProgress ip = IndexingProgress() ip.update(left, total, rate) - print('\r\x1b[K' + _('{} of {} book files indexed, {}').format(total-left, total, ip.time_left), flush=True, end=' ...') + print('\r\x1b[K' + _('{0} of {1} book files indexed, {2}').format(total-left, total, ip.time_left), flush=True, end=' ...') def remote_wait_for_completion(dbctx, indexing_speed):