From 8eb97bbe83232e0591f93b21b311f22be3fbbdd2 Mon Sep 17 00:00:00 2001 From: NiLuJe Date: Fri, 14 Sep 2012 18:01:18 +0200 Subject: [PATCH] Never build an AZW3 periodical, even if it's the preferred output format (FIXME: this should ideally handle mobi both & mobi new formats, too) --- src/calibre/gui2/tools.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/calibre/gui2/tools.py b/src/calibre/gui2/tools.py index 36c1a6f30f..b3375ad842 100644 --- a/src/calibre/gui2/tools.py +++ b/src/calibre/gui2/tools.py @@ -234,6 +234,9 @@ class QueueBulk(QProgressDialog): def fetch_scheduled_recipe(arg): # {{{ fmt = prefs['output_format'].lower() + # Never use AZW3 for periodicals... + if fmt == 'azw3': + fmt = 'mobi' pt = PersistentTemporaryFile(suffix='_recipe_out.%s'%fmt.lower()) pt.close() recs = []