fix unconfigured plugin path case
We tried to expand paths for None- ensure we're not passing [None] in that case, but [] instead.
This commit is contained in:
parent
dbc5cc9d7a
commit
700db15452
1 changed files with 3 additions and 1 deletions
|
@ -64,8 +64,10 @@ class PluginLoader:
|
|||
self.subdir = subdir
|
||||
self.aliases = aliases
|
||||
|
||||
if not isinstance(config, list):
|
||||
if config and not isinstance(config, list):
|
||||
config = [config]
|
||||
else:
|
||||
config = []
|
||||
|
||||
self.config = config
|
||||
|
||||
|
|
Loading…
Reference in a new issue