mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-03 13:53:02 +02:00
Fix import of input plugin widget.
This commit is contained in:
parent
8810cdeeba
commit
58c4935926
1 changed files with 1 additions and 1 deletions
|
|
@ -153,7 +153,7 @@ def widget_factory(cls):
|
|||
except ImportError:
|
||||
pass
|
||||
input_widget = None
|
||||
name = 'calibre.gui2.convert.%s' % self.plumber.input_plugin.name.lower().replace(' ', '_')
|
||||
name = self.plumber.input_plugin.name.lower().replace(' ', '_')
|
||||
try:
|
||||
input_widget = __import__('calibre.gui2.convert.'+name,
|
||||
fromlist=[1])
|
||||
|
|
|
|||
Loading…
Reference in a new issue