From 09b5ece8e79a00e3cbe911d3ef13456f5f3daef1 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 13 Dec 2011 08:34:39 +0530 Subject: [PATCH] Add docx to the list ofebook extensions. Fixes #903452 ([enhancement] docx import) --- src/calibre/ebooks/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/ebooks/__init__.py b/src/calibre/ebooks/__init__.py index 5cfddda2f3..a1026e97d6 100644 --- a/src/calibre/ebooks/__init__.py +++ b/src/calibre/ebooks/__init__.py @@ -30,7 +30,7 @@ BOOK_EXTENSIONS = ['lrf', 'rar', 'zip', 'rtf', 'lit', 'txt', 'txtz', 'text', 'ht 'html', 'htmlz', 'xhtml', 'pdf', 'pdb', 'pdr', 'prc', 'mobi', 'azw', 'doc', 'epub', 'fb2', 'djv', 'djvu', 'lrx', 'cbr', 'cbz', 'cbc', 'oebzip', 'rb', 'imp', 'odt', 'chm', 'tpz', 'azw1', 'pml', 'pmlz', 'mbp', 'tan', 'snb', - 'xps', 'oxps', 'azw4', 'book', 'zbf', 'pobi'] + 'xps', 'oxps', 'azw4', 'book', 'zbf', 'pobi', 'docx'] class HTMLRenderer(object):