From d0fa72a0027b81e8d84beb33ccd6bd9b8f4e09ab Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Tue, 11 Feb 2014 10:48:48 -0600 Subject: [PATCH] Don't autoconvert on Update Calibre Only. --- calibre-plugin/ffdl_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calibre-plugin/ffdl_plugin.py b/calibre-plugin/ffdl_plugin.py index c8bba85e..cfa35e86 100644 --- a/calibre-plugin/ffdl_plugin.py +++ b/calibre-plugin/ffdl_plugin.py @@ -1233,7 +1233,7 @@ class FanFictionDownLoaderPlugin(InterfaceAction): cp_plugin = self.gui.iactions['Count Pages'] cp_plugin.count_statistics(all_ids,prefs['countpagesstats']) - if prefs['autoconvert']: + if prefs['autoconvert'] and options['collision'] != CALIBREONLY: self.gui.status_bar.show_message(_('Starting auto conversion of %d books.')%(len(all_ids)), 3000) self.gui.iactions['Convert Books'].auto_convert_auto_add(all_ids)