From 770fd08aae53eaf44469dd0f41ee19724e64c907 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 10 May 2017 09:23:56 +0530 Subject: [PATCH] ... --- src/calibre/gui2/book_details.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/calibre/gui2/book_details.py b/src/calibre/gui2/book_details.py index 782672f8ec..bcef052498 100644 --- a/src/calibre/gui2/book_details.py +++ b/src/calibre/gui2/book_details.py @@ -57,10 +57,10 @@ def copy_all(web_view): def create_search_internet_menu(callback, author=None): - m = QMenu( - _('Search the internet for the author {}…').format(author) + m = QMenu(( + _('Search the internet for the author {}').format(author) if author is not None else - _('Search the internet for this book…') + _('Search the internet for this book')) + '…' ) items = all_book_searches() if author is None else all_author_searches() for k in sorted(items, key=lambda k: name_for(k).lower()):