mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Never build an AZW3 periodical, even if it's the preferred output format
(FIXME: this should ideally handle mobi both & mobi new formats, too)
This commit is contained in:
parent
87fc87978b
commit
8eb97bbe83
@ -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 = []
|
||||
|
Loading…
x
Reference in New Issue
Block a user