mirror of
https://github.com/beetbox/beets.git
synced 2025-12-30 20:42:37 +01:00
Use as_str_seq in pluginpath
This commit is contained in:
parent
1a8b20f354
commit
623dee064a
1 changed files with 1 additions and 1 deletions
|
|
@ -1056,7 +1056,7 @@ optparse.Option.ALWAYS_TYPED_ACTIONS += ('callback',)
|
|||
def _load_plugins(config):
|
||||
"""Load the plugins specified in the configuration.
|
||||
"""
|
||||
paths = config['pluginpath'].get(confit.StrSeq(split=False))
|
||||
paths = config['pluginpath'].as_str_seq(split=False)
|
||||
paths = [util.normpath(p) for p in paths]
|
||||
log.debug(u'plugin paths: {0}', util.displayable_path(paths))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue