From 08f4d07466ea6a5703b584649bf26a947c33a1e0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 13 Jan 2017 09:08:35 +0530 Subject: [PATCH] ... --- src/pyj/read_book/view.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/read_book/view.pyj b/src/pyj/read_book/view.pyj index f8dbd2f1e3..9997633533 100644 --- a/src/pyj/read_book/view.pyj +++ b/src/pyj/read_book/view.pyj @@ -132,7 +132,7 @@ class View: idx = spine.indexOf(self.currently_showing.name) if idx < 0: error_dialog(_('Missing file'), _( - 'Could not search as the spine item {} is missing from the book'.format(self.currently_showing.name))) + 'Could not search as the spine item {} is missing from the book').format(self.currently_showing.name)) return names = v'[]' item_groups = [range(idx-1, -1, -1), range(spine.length-1, idx, -1)] if data.backwards else [range(idx + 1, spine.length), range(idx)]