From 33a2a38cd7ba8f30e7b85b55f09cf973fc1d44f4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 27 Feb 2014 18:40:42 +0530 Subject: [PATCH] ... --- src/calibre/gui2/tweak_book/widgets.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/calibre/gui2/tweak_book/widgets.py b/src/calibre/gui2/tweak_book/widgets.py index 88ac937d2a..084e7dac02 100644 --- a/src/calibre/gui2/tweak_book/widgets.py +++ b/src/calibre/gui2/tweak_book/widgets.py @@ -190,8 +190,7 @@ class ImportForeign(Dialog): # {{{ def choose_source(self): path = choose_files(self, 'edit-book-choose-file-to-import', _('Choose file'), filters=[ - (_('HTML files'), ['htm', 'html', 'xhtml', 'xhtm']), - (_('DOCX files'), ['docx'])], select_only_single_file=True) + (_('HTML or DOCX files'), ['htm', 'html', 'xhtml', 'xhtm', 'docx'])], select_only_single_file=True) if path: self.src.setText(path[0]) self.dest.setText(self.data[1])