From 263b648fc08ec82246dff3645000e05a62ac1e3b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 11 Aug 2012 21:44:12 +0530 Subject: [PATCH] Fix #1035656 (PostScript support when adding books) --- 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 7a61c7cd96..9ebdc87c81 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', 'ibook', 'iba', 'azw3'] + 'textile', 'markdown', 'ibook', 'iba', 'azw3', 'ps'] class HTMLRenderer(object):