mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-21 03:55:25 +01:00
Fix #1324433 [calibre, version 1.39.0 FEHLER: Problem beim Starten des wireless Gerätes: Der Wireless Treiber hat Probleme beim Starten. Problem: "start smartdevice unknown exception"](https://bugs.launchpad.net/calibre/+bug/1324433)
This commit is contained in:
parent
ade9592707
commit
02ce48b451
1 changed files with 3 additions and 0 deletions
|
|
@ -130,6 +130,9 @@ def settings(cls):
|
|||
opts.extra_customization = []
|
||||
if not isinstance(opts.extra_customization, list):
|
||||
opts.extra_customization = [opts.extra_customization]
|
||||
for i,d in enumerate(cls.EXTRA_CUSTOMIZATION_DEFAULT):
|
||||
if i >= len(opts.extra_customization):
|
||||
opts.extra_customization.append(d)
|
||||
opts.extra_customization = cls.migrate_extra_customization(opts.extra_customization)
|
||||
return opts
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue