mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 20:35:18 +02:00
Added customization_help() to Source, as calibre-customize was failing on builtin Metadata source plugins.
This commit is contained in:
parent
0706e70591
commit
f219f0144d
1 changed files with 3 additions and 0 deletions
|
|
@ -212,6 +212,9 @@ def is_configured(self):
|
|||
def is_customizable(self):
|
||||
return True
|
||||
|
||||
def customization_help(self):
|
||||
return 'This plugin can only be customized using the GUI'
|
||||
|
||||
def config_widget(self):
|
||||
from calibre.gui2.metadata.config import ConfigWidget
|
||||
return ConfigWidget(self)
|
||||
|
|
|
|||
Loading…
Reference in a new issue