fix backends list displayed on first load
This commit is contained in:
parent
fc38d9e3a4
commit
63c4a09a0d
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ class ConsoleApplication(BaseApplication):
|
|||
return unloaded
|
||||
|
||||
def is_backend_loadable(self, backend):
|
||||
return self.CAPS and not self.caps_included(backend.iter_caps(), self.CAPS.__name__)
|
||||
return self.CAPS is None or self.caps_included(backend.iter_caps(), self.CAPS.__name__)
|
||||
|
||||
def load_backends(self, *args, **kwargs):
|
||||
if 'errors' in kwargs:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue