ignore when a backend is not found in list
This commit is contained in:
parent
26e7604cd4
commit
ecff9ebb64
1 changed files with 1 additions and 1 deletions
|
|
@ -194,7 +194,7 @@ class Weboob(object):
|
|||
if isinstance(backend, basestring):
|
||||
try:
|
||||
backends.append(self.backend_instances[backend])
|
||||
except ValueError:
|
||||
except (ValueError,KeyError):
|
||||
pass
|
||||
else:
|
||||
backends.append(backend)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue