From 6dc520a14a977b8d3544a62530b634dad2b8d2eb Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 12 Mar 2012 20:53:57 +0530 Subject: [PATCH] Add .ibook and .iba to the list of known ebook filetypes. Fixes #953018 ([Enhancement] iBooks file type) --- 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 f385caf118..42ec38701a 100644 --- a/src/calibre/ebooks/__init__.py +++ b/src/calibre/ebooks/__init__.py @@ -31,7 +31,7 @@ BOOK_EXTENSIONS = ['lrf', 'rar', 'zip', 'rtf', 'lit', 'txt', 'txtz', 'text', 'ht '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', 'docx', 'md', - 'textile', 'markdown'] + 'textile', 'markdown', 'ibook', 'iba'] class HTMLRenderer(object):