mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
calibre-customize help: Do not error out if one of the installed plugins has no customization help
This commit is contained in:
parent
cee3337107
commit
673a1a6a3b
@ -677,7 +677,10 @@ def main(args=sys.argv):
|
|||||||
)
|
)
|
||||||
print '\t', plugin.description
|
print '\t', plugin.description
|
||||||
if plugin.is_customizable():
|
if plugin.is_customizable():
|
||||||
print '\t', plugin.customization_help()
|
try:
|
||||||
|
print '\t', plugin.customization_help()
|
||||||
|
except NotImplementedError:
|
||||||
|
pass
|
||||||
print
|
print
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user