Fix #1031863 (Exception in Bulk conversion)

This commit is contained in:
Kovid Goyal 2012-08-01 23:55:00 +05:30
parent aa02422619
commit 6466898e1a

View File

@ -257,7 +257,7 @@ class InputFormatPlugin(Plugin):
pass pass
def gui_configuration_widget(self, parent, get_option_by_name, def gui_configuration_widget(self, parent, get_option_by_name,
get_option_help, db, book_id): get_option_help, db, book_id=None):
''' '''
Called to create the widget used for configuring this plugin in the Called to create the widget used for configuring this plugin in the
calibre GUI. The widget must be an instance of the PluginWidget class. calibre GUI. The widget must be an instance of the PluginWidget class.
@ -351,7 +351,7 @@ class OutputFormatPlugin(Plugin):
pass pass
def gui_configuration_widget(self, parent, get_option_by_name, def gui_configuration_widget(self, parent, get_option_by_name,
get_option_help, db, book_id): get_option_help, db, book_id=None):
''' '''
Called to create the widget used for configuring this plugin in the Called to create the widget used for configuring this plugin in the
calibre GUI. The widget must be an instance of the PluginWidget class. calibre GUI. The widget must be an instance of the PluginWidget class.